/*******************************************************
    Template Name    : Spice - Food & Resturant Responsive Landing Page Template
    Author           : Cute Themes
    Version          : 1.0
    Created          : 2024
    File Description : Main css file of the template
********************************************************/

/**************************************
    -- Css Table of Content
    01.Generale Css
    02.Preloader Section Css
    03.Navber Section Css
    04.Home Slider Section Css
    05.About Section Css
    06.Discount Menu Section Css
    07.Hire Section Css
    08.Menu Section Css
    09.Gallery Section Css
    10.Testimonial Section Css
    11.Team Section Css
    12.Faq Section Css
    13.Partner Logo Section Css
    14.Counter Section Css
    15.Blog Section Css
    16.Contact Section Css
    17.Footer Section Css
 *************************************/


/**************************************
 * 01. Generale Css
 **************************************/
*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
	background: #ffffff;
	color: #333;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: normal;
	line-height: 30px;
	overflow-x: hidden;
	margin: 0 auto;
	padding: 0;
	letter-spacing: 0.5px;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-weight: normal;
	color: #333;
	line-height: 1.5;
}
a {
	color: #ffbf12;
	text-decoration: none !important;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
img {
	max-width: 100%;
}
a:hover {
	color: #ffbf12;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
a:hover,
a:focus {
	color: #ffbf12;
	text-decoration: none;
}
p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: #555;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 0.5px;
	font-family: 'DM Sans', sans-serif;
}

.z-index {
	z-index: 9;
}
.position-relative {
	position: relative!important;
}
.form-control:focus {
	box-shadow: none;
	outline: 0 none;
	border-bottom: 1px solid #ffbf12;
}
.btn:focus {
	outline: none !important;
	box-shadow: none;
}
button:focus {
	outline: 0 none;
	box-shadow: none;
}
.button:focus {
	outline: none;
	box-shadow: none;
}
.button {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 10px 35px;
	text-align: center;
	font-size: 15px;
	text-transform: capitalize;
	letter-spacing: 0.7px;
	font-weight: 700;
	border: 2px solid #ffbf12;
	border-radius: 30px;
	color: #ffbf12;
	background: none;
	cursor: pointer;
	margin-top: 25px;
	overflow: hidden;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.button:hover {
	color: #fff;
}
.button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
	background-color: #ffbf12;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #ffbf12;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.button:hover:before {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.button:hover:after {
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.button-two {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 10px 35px;
	text-align: center;
	font-size: 15px;
	text-transform: capitalize;
	letter-spacing: 0.7px;
	font-weight: 700;
	border: 2px solid #ffffff;
	border-radius: 30px;
	color: #ffffff;
	background: none;
	cursor: pointer;
	margin-top: 25px;
	overflow: hidden;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.button-two:hover {
	color: #ffbf12;
}
.button-two:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
	background-color: #ffffff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.button-two:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #ffffff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.button-two:hover:before {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.button-two:hover:after {
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pb-20 {
	padding-bottom: 20px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-70 {
	padding-bottom: 70px;
}
.pb-80 {
	padding-bottom: 80px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pt-20 {
	padding-top: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-80 {
	padding-top: 80px;
}
.pt-100 {
	padding-top: 100px;
}

.bg-dark {
	background-color: #060d20 !important;
}

.bg-grey {
	background-color: #f8f8f9;
}

.bg-gradient {
	background-color: transparent;
	background-image: radial-gradient(at center center, #ffffff 0%, #6abff3 100%);;
}

.bg-none {
	background: none !important;
}
.color-text {
	color: #ffbf12;
}
dl,
ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mr-15 {
	margin-right: 15px;
}
.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}
.bg-fixed {
	background-attachment: fixed;
}
.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
}
.section-padding {
	padding: 100px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 70px;
}
.section-title h5,
.sub-title {
	color: #ffbf12;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	font-family: "Cookie", cursive;
}
.section-title h2 {
	color: #333;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: capitalize;
	font-family: 'Fondamento', cursive;
}
.display-table {
	width: 100%;
	height: 100%;
	display: table;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.mr-0 {
	margin: 0;
}
.mr-top-50 {
	margin-top: 50px;
}
.back-to-top {
	position: fixed;
	z-index: 4;
	top: 0;
	right: 15px;
	color: #ffffff;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	cursor: pointer;
	background-color: #ffbf12;
	opacity: 0;
	visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
	-webkit-transition: .9s;
	transition: .9s;
}
.back-to-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #ffc518;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.back-to-top:hover:before,
.back-to-top:focus:before {
	opacity: 1;
	visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus {
	color: #ffffff;
}
.back-to-top.active {
	top: 97%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}
.back-to-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}
.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}
.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}
.back-to-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 25px;
}
.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* [ Start Overlay ] */

[data-overlay-dark],
[data-overlay-light] {
	position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
	position: relative;
	z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
[data-overlay-dark]:before {
	background: #02050b;
}
[data-overlay-light]:before {
	background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
	color: #fff;
}
[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
	color: #dad6d6;
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
	opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
	opacity: .1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
	opacity: .2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
	opacity: .3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
	opacity: .4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
	opacity: .5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
	opacity: .6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
	opacity: .7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
	opacity: .8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
	opacity: .9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
	opacity: 1;
}
/* [ End Overlay ] */

/* owl theme */

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
	width: 7px;
	height: 7px;
	margin: 5px 5px;
	background-color: rgba(0, 0, 0, 0.1);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 5px;
	transition: .3s;
	border: 2px solid transparent;
}
.owl-theme .owl-dots .owl-dot.active span {
	background-color: #ffbf12 !important;
	width: 7px;
	height: 7px;
	transition: .3s;
	-webkit-box-shadow: 0 1px 5px #ffbf12;
	box-shadow: 0 1px 5px #ffbf12;
}
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: transparent;
	border: 2px solid #ffbf12;
	transition: .3s;
}

/**************************************
 * 02.Preloader Section Css
 **************************************/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ffffff;
	z-index: 999999;
}
.preloader .preloader-inner {
	width: 100px;
	height: 100px;
	display: inline-block;
	padding: 0px;
	text-align: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.preloader .preloader-inner span {
	position: absolute;
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background-color: #2f5bea !important;
	-webkit-animation: preloader 1.3s linear infinite;
	animation: preloader 1.3s linear infinite;
}
.preloader .preloader-inner span:last-child {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
@keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}
@-webkit-keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

/**************************************
 * 03.Navber Section Css
 **************************************/
.navbar-b {
	transition: all .5s ease-in-out;
	background-color: transparent;
	padding-top: 1.563rem;
	padding-bottom: 1.563rem;
}
.navbar-b.navbar-reduce {
	box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
	position: relative;
	padding-right: 10px;
	padding-left: 0;
}
.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
	color: #fff;
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.navbar-b.navbar-trans .nav-link:hover,
.navbar-b.navbar-reduce .nav-link:hover {
	color: #1B1B1B;
}
.navbar-b.navbar-trans .nav-link:hover {
	color: #fff;
}
.navbar-b.navbar-trans .show > .nav-link,
.navbar-b.navbar-trans .active > .nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
	color: #fff;
}
.navbar-b.navbar-reduce {
	transition: all .5s ease-in-out;
	background-color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
	animation: 500ms ease-in-out 0s normal fadeInDown;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.navbar-b.navbar-reduce .nav-link {
	color: #757575;
}
.navbar-b.navbar-reduce .nav-link:hover {
	color: #505050;
}
.navbar-b.navbar-reduce .show > .nav-link,
.navbar-b.navbar-reduce .active > .nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
	color: #ffbf12;
	background: #efefef;
    border-radius: 3px;
}
.navbar-b.navbar-reduce .navbar-brand {
	color: #333;
}
.navbar-b.navbar-reduce .navbar-toggler span {
	background-color: #1B1B1B;
}
.navbar-b .navbar-brand {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
}
.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	visibility: visible !important;
}
.navbar-b .dropdown-menu {
	margin: 1.12rem 0 0;
	border-radius: 0;
}
.navbar-b .dropdown-menu .dropdown-item {
	padding: .7rem 1.7rem;
	transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item:hover {
	background-color: #ffbf12;
	color: #fff;
	transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item.active {
	background-color: #ffbf12;
}
.navbar-toggler {
	position: relative;
	
}
.navbar-toggler:focus,
.navbar-toggler:active {
	outline: 0;
	box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: #fff;
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	left: 0;
	opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
	transition: -webkit-transform .35s ease-in-out;
	transition: transform .35s ease-in-out;
	transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.9;
}
.navbar-b .black-logo {
	display: none;
}
.navbar-b.navbar-reduce .navbar-brand .white-logo {
	display: none;
}
.navbar-b.navbar-reduce .navbar-brand .black-logo {
	display: block;
}
.navbar-area {
	position: absolute;
	z-index: 999;
	left: 0;
	width: 100%;
	height: auto;
	background-color: transparent;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-area.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	background: #ffffff !important;
	-webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
	animation: 500ms ease-in-out 0s normal fadeInDown;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-area.is-sticky .navbar-nav .nav-item a {
	color: #505050;
}

/*
.navbar-area.is-sticky .navbar-nav .nav-item a:hover,
.navbar-area.is-sticky .navbar-nav .nav-item a:focus,
.navbar-area.is-sticky .navbar-nav .nav-item a.active {
	color: #ffbf12;
	background: #efefef;
    border-radius: 3px;
}
*/

.navbar-area.is-sticky .navbar-brand .white-logo {
	display: none;
}

.navbar-area.is-sticky .navbar-brand .black-logo {
	display: block;
}
/*
.navbar-area.is-sticky .navbar-toggler span {
    display: block;
    background-color: #333;
    height: 3px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 0;
    opacity: 1;
}
*/

/***************************************
 ** - 04 - Home Slider Section CSS
 ***************************************/
.slider {
	position: relative;
}

.slider.fixed-slider {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.slider .swiper-slide-active {
	z-index: 3;
}

.slider .parallax-slider {
	position: relative;
	height: 800px;
	min-height: 100vh;
}

.slider .parallax-slider .swiper-slide {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-bottom: 50px;
}

.slider .parallax-slider .swiper-slide .bg-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
}

.slider .parallax-slider .swiper-slide .bg-img:before {
	background-color: #131c30 !important;
}

.slider .parallax-slider .caption {
	text-align: center;
	padding-top: 50px;
}

.slider .parallax-slider .caption h3 {
	color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.slider .parallax-slider .swiper-slide-active .caption h3 {
	animation: fadeInRight .8s;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.slider .parallax-slider .caption h1 {
	color: #fff;
	font-size: 75px;
	font-weight: 900;
	opacity: 1;
	visibility: visible;
	line-height: 1.2;
	margin-bottom: 0px
}

.slider .parallax-slider .swiper-slide-active .caption h1 {
	animation: fadeInLeft .8s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.slider .parallax-slider .caption p {
	color: #fff;
	font-size: 17px;
	margin-top: 15px;
	margin-bottom: 5px
}

.slider .parallax-slider .swiper-slide-active .caption p {
	animation: fadeInRight .8s;
}

.slider .parallax-slider .swiper-slide-active .caption .home-slider-btn {
	animation: fadeInLeft .8s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.slider .control-text {
	position: absolute;
	z-index: 8;
	top: 50%;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.slider .control-text .swiper-nav-ctrl {
	position: static;
	width: auto;
	height: auto;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 3px;
	display: inline-block;
	background-color: transparent;
	margin-left: 15px;
	margin-right: 15px;
}

.slider .control-text .swiper-nav-ctrl:after {
	font-size: 20px;
    width: 60px;
    height: 60px;
    display: block;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    background-color: rgb(0, 0, 0, 0.3);
}
.slider .swiper-pagination-bullets {
	bottom: 20px;
}
.slider .swiper-pagination-bullet {
	opacity: .4;
	background-color: #fff;
}
.slider .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #fff;
}

.slider .parallax-slider .swiper-slide-active .caption .social-icon-list {
	animation: fadeInUp .8s;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.slider .parallax-slider .caption .social-icon-list {
    margin-bottom: 20px;
}

.slider .parallax-slider .caption .social-icon-list li {
    display: inline-block;
    margin: 5px 5px;
}

.slider .parallax-slider .caption .social-icon-list li a {
    color: #fff !important;
    font-size: 18px !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: 1px solid rgb(255, 255, 255, 0.3);
    background-color: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider .parallax-slider .caption .social-icon-list li a:hover {
    color: #fff;
    border: 1px solid #ffbf12;
    background-color: #ffbf12;
}

/**************************************
 * 05.About Section Css
 **************************************/
.about-area {
	position: relative;
    z-index: 1;
    display: block;
    padding: 100px 0;
}

.about-image {
	margin-right: 10px;
}

.about-image img {
    border-radius: 12px;
}

.about-content {
    padding-right: 0px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0px;
}
.about-content p {
    margin-bottom: 18px;
}
.about-cv-info p {
    margin-bottom: 5px;
}
.about-cv-info p:last-child {
    margin-bottom: 0px;
}
.about-cv-info p i {
    color: #ffbf12;
    margin-right: 4px;
}

/**************************************
 * 06.Discount Menu Section Css
 **************************************/
.discount-menu-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 35px;
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius: 12px;
	margin-bottom: 35px;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
}

.discount-menu-img {
    max-width: 263px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.discount-menu-info .rating-box {
    margin-bottom: 5px;
}
.discount-menu-info .rating-box ul li {
	display: inline-block;
}
.discount-menu-info .rating-box ul li i {
	color: #ffce39;
	font-size: 18px;
}

.discount-menu-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
}
.discount-menu-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
	font-family: 'Fondamento', cursive;
}

.discount-menu-info h4 del {
    color: #FF9800;
}
.discount-menu-info .button {
	padding: 8px 30px;
    margin-top: 20px;
}

/**************************************
 * 07. Hire Section Css
 **************************************/
.hire-area {
	position: relative;
	z-index: 1;
	text-align: center;
	background-image: url(../img/banner-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-attachment: fixed;
}
.hire-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: .7;
	background: #181e3e;
}
.hire-container {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
}
.hire-content h5 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.hire-content h2 {
	color: #ffffff;
	font-size: 45px;
	font-weight: 700;
	text-transform: capitalize;
	font-family: 'Fondamento', cursive;
}
.hire-content h3 {
	color: #ffffff;
    font-size: 35px;
    font-weight: 800;
    display: block;
    margin-top: 20px;
}
.hire-content .call-button {
	color: #ffbf12;
    display: inline-block;
}

.hire-content .video-btn {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: transparent;
	margin: 0 auto;
	-webkit-animation: ripple-white 1s linear infinite;
	animation: ripple-white 1s linear infinite;
	-webkit-transition: .5s;
	margin-bottom: 50px;
}
.iq-video.video-btn i {
	font-size: 70px;
	color: #ffffff;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

@-webkit-keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
	}
	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}
@keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
	}
	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}

/*************************************
 * 08. Menu Section Css
 *************************************/
.menu-day-area {
	position: relative;
	z-index: 1;
	background: url(../img/menu-bg.png);
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.menu-day-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .35;
  z-index: -1;
}

.bg--cover {
	background-position: 50% 50% !important;
	background-size: cover !important;
}
.menu-day-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
}

.menu-day-product-content .menu-day-tab-header {
	text-align: center;
	margin-bottom: 30px;
}
.menu-day-product-content .menu-day-tab-list {
	padding: 30px 0;
}
.menu-day-product-content .menu-day-tab-list li {
	display: inline-block;
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px dashed #bbb;
	vertical-align: top;
}
.menu-day-product-content .menu-day-tab-list li a {
    display: block;
    color: #555;
    font-size: 20px;
    text-transform: capitalize;
    line-height: 30px;
    font-weight: 700;
}
.menu-day-product-content .menu-day-tab-list li a i {
	font-size: 35px;
    vertical-align: middle;
}
.menu-single-tab-content.active {
	display: block;
}
.menu-single-tab-content {
	display: none;
}
.menu-day-product-content .menu-single-product-horizontal {
	border-bottom: 1px dashed #bbb;
	padding: 15px 0;
}
.menu-single-product-horizontal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
}
.menu-single-product-horizontal .menu-product-info-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	width: 100%;
    justify-content: space-between;
}

.menu-single-product-horizontal .menu-product-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}
.menu-single-product-horizontal .menu-product-details p {
	margin-bottom: 0;
	color: #333;
}
.menu-single-product-horizontal .menu-product-price {
	max-width: 80px;
	padding-left: 15px;
	text-align: right;
}
.menu-single-product-horizontal .menu-product-price span {
	color: #fbc31b;
	font-size: 18px;
	font-weight: 600;
}
.menu-day-product-content .menu-day-tab-list li a:hover {
	color: #fbc31b;
}
.menu-day-product-content .menu-day-tab-list li a:hover i {
	color: inherit;
}
.menu-day-product-content .menu-day-tab-list li a:hover i:before {
	color: inherit;
}
.menu-day-product-content .menu-day-tab-list li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.menu-day-product-content .menu-day-tab-list li.active a {
	color: #fbc31b;
}
.menu-day-product-content .menu-day-tab-list li.active a i {
	color: inherit;
}
.menu-day-product-content .menu-day-tab-list li.active a i:before {
	color: inherit;
}
.menu-day-product-content .menu-single-product-horizontal {
	border-bottom: 1px dashed #bbb;
	padding: 15px 0;
}
.menu-day-product-content .menu-single-product-horizontal:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

/**************************************
 * 09.Gallery Section Css
 **************************************/
.single-gallery-item {
	position: relative;
	overflow: hidden;
	display: block;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	margin-bottom: 30px;
}

.single-gallery-item:before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
	visibility: hidden;
	background-color: #ff9800;
    transition: 0.5s;
}
.single-gallery-item:hover:before {
    opacity: 0.8;
	visibility: visible;
}

.single-gallery-item .gallery-overlay-info {
	position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 30px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
.single-gallery-item .gallery-overlay-info i {
	color: #fff;
    font-size: 30px;
}

.single-gallery-item:hover .gallery-overlay-info {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

/**************************************
 * 10.Testimonial Section Css
 **************************************/
.testimonial-section {
	position: relative;
	z-index: 1;
	text-align: center;
	background: url(../img/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.testimonial-section:after {
	position: absolute;
	z-index: -1;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .7;
	background: #181e3e;
}

.testimonial-section .section-title h2 {
	color: #fff;
}

.single-testimonial {
	position: relative;
	padding: 0px 15px;
	margin: 10px;
}
.rating-box ul li {
	display: inline-block;
}
.rating-box ul li i {
	color: #ffce39;
	font-size: 22px;
}
.testimonial-content {
	margin-top: 15px;
	margin-bottom: 25px;
}
.testimonial-content p {
	color: #fff;
	font-size: 18px;
	font-style: italic;
}
.single-testimonial .testimonial-bio .avatar img {
    width: 115px;
    padding: 3px;
	border-radius: 50%;
    border: 5px solid #e3e3e3;
    margin: 0 auto;
}
.single-testimonial .testimonial-bio .bio-info {
	text-align: center;
	margin-top: 15px;
}
.single-testimonial .testimonial-bio .bio-info .name {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 2px;
}
.single-testimonial .testimonial-bio .bio-info span {
	color: #ffbf12;
	font-size: 14px;
	font-weight: 600;
	display: block;
}
.testimonial-section .owl-theme .owl-nav.disabled+.owl-dots {
	position: unset;
	right: 0;
	top: 50%;
	transform: none;
	margin-top: 20px;
}
.testimonial-section .owl-theme .owl-dots .owl-dot span {
	background-color: #ddd;
}
.slider-bg-grey .owl-theme .owl-dots .owl-dot span {
	background-color: #cacaca;
}

/**************************************
 * 11.Team Section Css
 **************************************/
.team-area {
}

.team-area .section-title {
	margin-bottom: 35px;
}
.single-team-box {
	margin-top: 30px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-image {
	border-radius: 10px;
	overflow: hidden;
}
.single-team-box .team-image img {
	width: 100%;
	height: auto;
}
.team-info {
	padding: 20px 15px 30px;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}
.team-info span {
	color: #ffbf12;
	font-size: 14px;
	font-weight: 600;
	display: block;
}
.team-social-icon {
	display: block;
	margin-top: 15px;
}
.single-team-box .team-social-icon a {
	position: relative;
	z-index: 1;
	color: inherit;
	font-size: 18px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px;
	margin: 0 5px;
	display: inline-block;
	vertical-align: middle;
	background: transparent;
}
.single-team-box .team-social-icon a:after {
	top: 0px;
	left: 0px;
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transform: scale(1.4);
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	background: inherit;
	border-radius: inherit;
}
.single-team-box .team-social-icon a:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.single-team-box .team-social-icon a:hover i:before {
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}
.social-color-1:hover:after {
	background-color: #3b5998 !important;
}
.social-color-2:hover:after {
	background-color: #00acee !important;
}
.social-color-3:hover:after {
	background-color: #0e76a8 !important;
}
.social-color-1 {
	color: #3b5998 !important;
	background-color: transparent;
	border: 1px dashed #3b5998;
}
.social-color-2 {
	color: #00acee !important;
	background-color: transparent;
	border: 1px dashed #00acee;
}
.social-color-3 {
	color: #0e76a8 !important;
	background-color: transparent;
	border: 1px dashed #0e76a8;
}
.mt-70 {
	margin-top: 70px !important;
}

/**************************************
 * 12.Faq Section Css
 **************************************/
.faq-area {}
.faq-area .faq-item .accordion .accordion-item {
	margin-bottom: 30px;
	border: 0;
}
.faq-area .faq-item .accordion .accordion-item:last-child {
	margin-bottom: 0px;
}
.faq-area .faq-item .accordion .title {
	padding-bottom: 12px;
	background-color: transparent;
	border-radius: 0;
	cursor: pointer;
	position: relative;
	-webkit-transition: all .4s;
	transition: all .4s;
	border-bottom: 1px solid #dadada;
}
.faq-area .faq-item .accordion .title:after {
	content: '\f067';
	font-family: 'FontAwesome';
	font-weight: 400;
	font-size: 14px;
	position: absolute;
	right: 10px;
	color: #333;
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.faq-area .faq-item .accordion .title h6 {
	font-size: 16px;
	font-weight: 700;
	padding-right: 20px;
}
.faq-area .faq-item .accordion .title h6 span {
	color: #333;
}
.faq-area .faq-item .accordion .active .title h6 span {
	color: #ffbf12;
}
.faq-area .faq-item .accordion .accordion-info {
	display: none;
	padding: 0;
	margin-top: 10px;
	margin-left: 0;
	border: 0;
	background: transparent;
	border-radius: 0;
}
.faq-area .faq-item .accordion .accordion-info p {
	font-size: 14px;
}
.faq-area .faq-item .accordion .active {
	display: block;
}
.faq-area .faq-item .accordion .active .title {
	color: #ffbf12;
	background: transparent;
}
.faq-area .faq-item .accordion .active .title:after {
	content: '\f068';
	color: #ffbf12;
}
.faq-area .faq-item .accordion .active .title h6 {
	color: #ffbf12;
}

/**************************************
 * 13.Partner Logo Section Css
 **************************************/
.partner-area .section-title {
    margin-bottom: 60px;
}
.partner-single-item {
	background: #ffffff;
    padding: 5px 20px;
	border-radius: 5px;
    -webkit-box-shadow: 0 0.3em 1em -0.125em rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.02);
	box-shadow: 0 0.3em 1em -0.125em rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.02);
    margin: 15px 15px;
}
.partner-single-item img {
	margin: 0 auto;
}

/**************************************
 * 14.Counter Section Css
 **************************************/
.counter-area {
	position: relative;
	z-index: 1;
	text-align: center;
	background: url(../img/banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.counter-area::after {
	position: absolute;
	z-index: -1;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .7;
	background: #181e3e;
}
.counter-area .section-title h5 {
	color: #ffffff;
}
.counter-area .section-title h2 {
	color: #fff;
}
.counter-contents h2 {
	color: #fff;
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 5px;
	word-spacing: -10px;
}
.counter-contents h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

/**************************************
 * 15. Blog Section Css
 **************************************/
.blog-area {
	text-align: center;
}
.blog-area .section-title {
	text-align: center;
    margin-bottom: 35px;
}
.blog-area .single-blog {
	position: relative;
	background: #ffffff;
	border-radius: 5px;
    margin-top: 35px;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	overflow: hidden;
}
.blog-area .post-img {
	position: relative;
	overflow: hidden;
}
.blog-area .single-blog img {
	-webkit-transition: all .5s;
	transition: all .5s;
}
.blog-area .single-blog:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: rotate(3deg) scale(1.1, 1.1);
	-ms-transform: rotate(3deg) scale(1.1, 1.1);
	transform: rotate(3deg) scale(1.1, 1.1);
}
.single-blog .blog-tag {
	position: absolute;
	z-index: 2;
	top: 15px;
	right: 15px;
	background: #ffbf12;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	border-radius: 5px;
	text-align: center;
	text-transform: uppercase;
}
.single-blog .blog-tag a {
	color: #fff;
	font-size: 12px;
	padding: 5px 10px;
	font-weight: 700;
	display: block;
}
.blog-area .single-blog .blog-text {
	padding: 30px 25px;
	text-align: left;
}
.blog-category {
	margin-bottom: 15px;
}
.blog-area .single-blog .blog-type {
	font-weight: 700;
	color: #ffbf12;
	font-size: 14px;
	display: inline-block;
}
.blog-area .single-blog .blog-type:hover {
	color: #ffbf12;
	text-decoration: underline !important;
}
.blog-area .single-blog .blog-text h5 a {
	color: #333;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	display: block;
}
.blog-area .single-blog .blog-text h5 a:hover {
	color: #ffbf12;
	text-decoration: underline !important;
}
.blog-bottom-text-link {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.blog-bottom-text-link span {
	font-size: 14px;
	color: #5a5a5a;
	font-weight: 700;
}
.single-blog .blog-text .blog-bottom-text-link a {
	font-size: 14px;
	font-weight: 700;
	color: #555;
	margin-bottom: 5px;
	display: block;
}
.single-blog .blog-text .blog-bottom-text-link a:hover {
	color: #ffbf12;
	text-decoration: underline !important;
}
.blog-more-btn {
	text-align: center;
	margin-top: 20px;
}

/**************************************
 * 16. Contact Section Css
 **************************************/
.contact-box-item {
	margin-bottom: 30px;
}
.contact-box-item:last-child {
	margin-bottom: 0px;
}
.contact-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact-info p {
	color: #333;
	margin-top: 7px;
	margin-bottom: 0;
}

.contact-info p i {
	color: #fbc31b;
	font-size: 16px;
	margin-right: 5px;
}

.contact-info p a {
	color: #333;
}

.contact-info p a:hover {
	color: #fbc31b;
}

.contact-info p.opening-hours {
	overflow: hidden;
	padding: 0;
	text-align: left;
}

.contact-info p.opening-hours span {
	float: right;
	margin-right: 25px;
}

.contact-area .form input,
.contact-area .form textarea {
	width: 100%;
	padding: 12px 20px;
	background-color: #f5f5fa;
	font-weight: 500;
	border-radius: 5px;
	border: 0;
	border-left: 3px solid #ffbf12;
}
.contact-area .form textarea {
	max-height: 120px;
	max-width: 100%;
}
#contact-form .button {
	margin: 0;
}
.form-group {
	margin-bottom: 25px;
}
button,
input,
textarea {
	color: #505050;
}
button,
input,
textarea:focus {
	border: none;
	outline: none;
}
.contact-area .form-message.success {
	background: #03b103;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
	margin-bottom: 35px;
}
.contact-area .form-message.error {
	background: #ff4d15;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
	margin-bottom: 35px;
}

/*******************************
 ** - 16 - Map Section CSS
 *******************************/
.map-section {
    margin-bottom: -10px;
}

.map-section .google-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/**************************************
 * 17.Footer Section Css
 **************************************/
.footer-top-wrapper {
	background-color: #202438
}
.footer-bottom-wrapper {
	padding: 30px 0;
	background-color: #1a1c2d;
}
.footer-about .footer-logo {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	display: block;
}
.footer-about p {
	color: #fff;
}
.pl-50 {
	padding-left: 50px;
}
.pr-50 {
	padding-right: 50px;
}
.footer-list h5 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
}
.footer-list ul li a {
	display: inline-block;
	color: #dadada;
	padding: 5px 0;
	font-weight: 600;
}
.footer-list ul li a:hover {
	color: #ffbf12;
}
.footer-social-icon {
	margin-top: 20px;
}
.footer-social-icon li {
	display: inline-block;
	margin-right: 10px;
}
.footer-social-icon li a {
	color: #fff;
	font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	border-radius: 30px;
	background-color: #ffbf12;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.footer-social-icon li a:hover {
	color: #ffbf12;
	background: #fff;
}
.footer-list .input-box {
	padding-top: 10px;
}
.footer-list .input-box input {
	width: 100%;
	line-height: 50px;
	background: #151725;
	border-radius: 30px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	border: 0;
	padding-left: 25px;
}
.footer-list .input-box input::-webkit-input-placeholder {
	/* Edge */
	color: #dadada;
}
.footer-list .input-box input:-ms-input-placeholder {
	/* Internet Explorer */
	color: #dadada;
}
.footer-list .input-box input::placeholder {
	color: #dadada;
}
.footer-list .input-box button {
	width: 100%;
	border: 0;
	margin-top: 20px;
	background: #ffbf12;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 48px;
	border-radius: 30px;
}
.footer-list .input-box button i {
	font-size: 14px;
	padding-left: 5px;
}
.footer-copyright-text p {
	color: #fff;
}

/**************************************
 * Cairns Casino Navbar
 **************************************/

.royat-navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: rgba(6, 13, 32, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	padding-top: 16px;
	padding-bottom: 16px;
	transition: all 0.35s ease;
}

.royat-navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.royat-navbar .navbar-brand {
	display: flex;
	align-items: center;
	padding: 0;
	margin-right: 24px;
}

.royat-navbar .navbar-brand img {
	max-height: 42px;
	width: auto;
	display: block;
}

.royat-navbar .black-logo {
	display: none !important;
}

.royat-navbar .white-logo {
	display: block !important;
}

.royat-navbar .navbar-nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.royat-navbar .navbar-nav .nav-item {
	padding-right: 0;
}

.royat-navbar .navbar-nav .nav-link {
	position: relative;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	padding: 10px 9px;
	transition: color 0.3s ease;
}

.royat-navbar .navbar-nav .nav-link:hover,
.royat-navbar .navbar-nav .nav-link:focus,
.royat-navbar .navbar-nav .nav-link.active {
	color: #d4af37;
	background: transparent;
}

.royat-navbar .navbar-nav .nav-link:after {
	content: "";
	position: absolute;
	left: 9px;
	right: 9px;
	bottom: 5px;
	height: 1px;
	background: #d4af37;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.royat-navbar .navbar-nav .nav-link:hover:after,
.royat-navbar .navbar-nav .nav-link.active:after {
	transform: scaleX(1);
}

.royat-navbar .navbar-play-btn,
.royat-navbar .mobile-play-btn {
	margin-top: 0;
	padding: 9px 24px;
	border-radius: 30px;
	border: 2px solid #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.royat-navbar .navbar-play-btn:hover,
.royat-navbar .mobile-play-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.royat-navbar .navbar-play-btn:before,
.royat-navbar .navbar-play-btn:after,
.royat-navbar .mobile-play-btn:before,
.royat-navbar .mobile-play-btn:after {
	display: none;
}

.royat-navbar .mobile-play-btn {
	display: none;
}

/* Prevent fixed navbar from covering sections */
#home,
#about,
#advantages,
#bonuses,
#games,
#app,
#payments,
#faq {
	scroll-margin-top: 90px;
}

/* Mobile Navbar */
@media only screen and (max-width: 991px) {
	.royat-navbar {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.royat-navbar .container {
		flex-wrap: nowrap;
	}

	.royat-navbar .navbar-brand {
		margin-right: 12px;
		max-width: 58%;
	}

	.royat-navbar .navbar-brand img {
		max-height: 34px;
	}

	.royat-navbar .navbar-collapse,
	.royat-navbar .navbar-toggler {
		display: none !important;
	}

	.royat-navbar .mobile-play-btn {
		display: inline-block;
		padding: 8px 18px;
		font-size: 12px;
	}

	body {
		padding-top: 64px;
	}
}

@media only screen and (min-width: 992px) {
	body {
		padding-top: 0;
	}

	.royat-navbar .navbar-collapse {
		display: flex !important;
	}
}

/**************************************
 * Hero Banner Section
 **************************************/

.hero-area {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 160px 0 110px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 8, 20, 0.92) 0%, rgba(6, 13, 32, 0.78) 42%, rgba(6, 13, 32, 0.28) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.38) 100%);
	z-index: 1;
}

.hero-area .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 720px;
	text-align: left;
}

.hero-label {
	display: inline-block;
	margin-bottom: 18px;
	padding: 8px 18px;
	border: 1px solid rgba(212, 175, 55, 0.55);
	border-radius: 50px;
	color: #d4af37;
	background: rgba(212, 175, 55, 0.08);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1.4px;
}

.hero-content h1 {
	color: #ffffff;
	font-size: 58px;
	font-weight: 900;
	line-height: 1.12;
	margin-bottom: 24px;
	letter-spacing: -0.8px;
}

.hero-content p {
	max-width: 650px;
	color: #e6e8ee;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 0;
}

.hero-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 32px 0 36px;
	max-width: 690px;
}

.hero-highlight-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 72px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-highlight-item i {
	flex: 0 0 auto;
	color: #d4af37;
	font-size: 20px;
}

.hero-highlight-item span {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
	margin-top: 0;
	padding: 12px 34px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-primary-btn {
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.hero-primary-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.hero-secondary-btn {
	border-color: rgba(255, 255, 255, 0.82);
	color: #ffffff;
}

.hero-secondary-btn:hover {
	background: #ffffff;
	color: #07111f;
	border-color: #ffffff;
}

.hero-primary-btn:before,
.hero-primary-btn:after,
.hero-secondary-btn:before,
.hero-secondary-btn:after {
	display: none;
}

.hero-note {
	margin-top: 24px !important;
	color: rgba(255, 255, 255, 0.72) !important;
	font-size: 13px !important;
	line-height: 1.6 !important;
}

/* Mobile Hero */
@media only screen and (max-width: 991px) {
	.hero-area {
		min-height: auto;
		padding: 120px 0 80px;
		background-position: center center;
	}

	.hero-overlay {
		background:
			linear-gradient(90deg, rgba(3, 8, 20, 0.94) 0%, rgba(6, 13, 32, 0.82) 100%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.45) 100%);
	}

	.hero-content h1 {
		font-size: 38px;
		line-height: 1.18;
	}

	.hero-content p {
		font-size: 16px;
		line-height: 1.7;
	}

	.hero-highlights {
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 28px 0 32px;
	}

	.hero-highlight-item {
		min-height: auto;
		padding: 14px 16px;
	}

	.hero-actions {
		gap: 12px;
	}

	.hero-primary-btn,
	.hero-secondary-btn {
		width: 100%;
		text-align: center;
		padding: 12px 24px;
	}
}

@media only screen and (max-width: 575px) {
	.hero-area {
		padding: 105px 0 65px;
	}

	.hero-label {
		font-size: 11px;
		letter-spacing: 1px;
		padding: 7px 14px;
	}

	.hero-content h1 {
		font-size: 31px;
	}

	.hero-content p {
		font-size: 15px;
	}

	.hero-note {
		font-size: 12px !important;
	}
}

/**************************************
 * Games Section
 **************************************/

.games-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.games-area:before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 430px;
	height: 430px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.games-area:after {
	content: "";
	position: absolute;
	left: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
	pointer-events: none;
}

.games-area .container {
	position: relative;
	z-index: 2;
}

.games-area .section-title {
	margin-bottom: 46px;
}

.games-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.games-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.games-area .section-intro {
	max-width: 860px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.games-feature-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 48px;
}

.games-feature-card {
	position: relative;
	padding: 30px 28px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 16px 45px rgba(6, 13, 32, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	overflow: hidden;
}

.games-feature-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.games-feature-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.58);
	box-shadow: 0 24px 55px rgba(6, 13, 32, 0.12);
}

.games-feature-card:hover:before {
	opacity: 1;
}

.games-feature-card i,
.games-feature-card h4,
.games-feature-card p {
	position: relative;
	z-index: 2;
}

.games-feature-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.games-feature-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 10px;
}

.games-feature-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
}

.games-grid {
	margin-top: 0;
}

.game-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #07111f;
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 42px rgba(6, 13, 32, 0.14);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.game-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.09));
	pointer-events: none;
}

.game-card img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.game-card:hover {
	transform: translateY(-7px);
	border-color: rgba(212, 175, 55, 0.75);
	box-shadow: 0 28px 65px rgba(6, 13, 32, 0.22);
}

.game-card:hover img {
	transform: scale(1.06);
	filter: brightness(0.58);
}

.game-card-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.02) 0%, rgba(5, 11, 22, 0.42) 45%, rgba(5, 11, 22, 0.9) 100%);
	transition: background 0.35s ease;
}

.game-card:hover .game-card-overlay {
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.16) 0%, rgba(5, 11, 22, 0.62) 42%, rgba(5, 11, 22, 0.95) 100%);
}

.game-card-overlay h4 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.58);
}

.game-card-overlay a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 108px;
	padding: 8px 16px;
	border-radius: 30px;
	background: #d4af37;
	color: #07111f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 10px 22px rgba(212, 175, 55, 0.24);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.game-card:hover .game-card-overlay a {
	opacity: 1;
	transform: translateY(0);
}

.game-card-overlay a:hover {
	background: #ffffff;
	color: #07111f;
}

.games-bottom-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 34px 38px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.18);
}

.games-bottom-box h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 10px;
}

.games-bottom-box p {
	max-width: 780px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.games-bottom-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.games-bottom-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.games-bottom-btn:before,
.games-bottom-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.games-area .section-title h2 {
		font-size: 34px;
	}

	.games-feature-row {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.games-bottom-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 26px;
	}

	.games-bottom-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.games-area .section-title h2 {
		font-size: 28px;
	}

	.games-area .section-intro {
		font-size: 15px;
	}

	.games-feature-card {
		padding: 26px 22px;
	}

	.game-card {
		border-radius: 14px;
	}

	.game-card img {
		border-radius: 14px;
	}

	.game-card-overlay {
		padding: 12px;
	}

	.game-card-overlay h4 {
		font-size: 10.5px;
		margin-bottom: 8px;
	}

	.game-card-overlay a {
		min-width: auto;
		padding: 7px 12px;
		font-size: 10px;
	}

	.games-bottom-box h3 {
		font-size: 22px;
	}
}


/**************************************
 * Live Games Section
 **************************************/

.live-games-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 48%, #07111f 100%);
	overflow: hidden;
}

.live-games-area:before {
	content: "";
	position: absolute;
	top: -180px;
	left: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.live-games-area:after {
	content: "";
	position: absolute;
	right: -160px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.live-games-area .container {
	position: relative;
	z-index: 2;
}

.live-games-area .section-title {
	margin-bottom: 42px;
}

.live-games-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.live-games-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.live-games-area .section-intro {
	max-width: 860px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.live-games-info {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 46px;
}

.live-games-info-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.24);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.live-games-info-item i {
	color: #d4af37;
	font-size: 20px;
}

.live-games-info-item span {
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.live-games-grid {
	margin-top: 0;
}

.live-game-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #050b16;
	border: 1px solid rgba(212, 175, 55, 0.26);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.live-game-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.08));
	pointer-events: none;
}

.live-game-card img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.live-game-card:hover {
	transform: translateY(-7px);
	border-color: rgba(212, 175, 55, 0.72);
	box-shadow: 0 28px 65px rgba(0, 0, 0, 0.46);
}

.live-game-card:hover img {
	transform: scale(1.06);
	filter: brightness(0.58);
}

.live-game-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.02) 0%, rgba(5, 11, 22, 0.45) 42%, rgba(5, 11, 22, 0.92) 100%);
	opacity: 1;
	transition: background 0.35s ease;
}

.live-game-card:hover .live-game-overlay {
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.16) 0%, rgba(5, 11, 22, 0.62) 42%, rgba(5, 11, 22, 0.95) 100%);
}

.live-game-overlay h4 {
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.live-game-overlay a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 108px;
	padding: 8px 16px;
	border-radius: 30px;
	background: #d4af37;
	color: #07111f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 10px 22px rgba(212, 175, 55, 0.24);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.live-game-card:hover .live-game-overlay a {
	opacity: 1;
	transform: translateY(0);
}

.live-game-overlay a:hover {
	background: #ffffff;
	color: #07111f;
}

.live-games-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 34px 38px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.live-games-bottom h3 {
	color: #07111f;
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 10px;
}

.live-games-bottom p {
	max-width: 780px;
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.live-games-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.live-games-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.live-games-btn:before,
.live-games-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.live-games-area .section-title h2 {
		font-size: 34px;
	}

	.live-games-info {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.live-games-info-item {
		justify-content: flex-start;
	}

	.live-games-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 26px;
	}

	.live-games-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.live-games-area .section-title h2 {
		font-size: 28px;
	}

	.live-games-area .section-intro {
		font-size: 15px;
	}

	.live-game-card {
		border-radius: 14px;
	}

	.live-game-card img {
		border-radius: 14px;
	}

	.live-game-overlay {
		padding: 12px;
	}

	.live-game-overlay h4 {
		font-size: 11px;
		margin-bottom: 8px;
	}

	.live-game-overlay a {
		min-width: auto;
		padding: 7px 12px;
		font-size: 10px;
	}

	.live-games-bottom h3 {
		font-size: 22px;
	}
}

/**************************************
 * Feature Games Section
 **************************************/

.feature-games-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f7f1e3 50%, #ffffff 100%);
	overflow: hidden;
}

.feature-games-area:before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 430px;
	height: 430px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.feature-games-area:after {
	content: "";
	position: absolute;
	left: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
	pointer-events: none;
}

.feature-games-area .container {
	position: relative;
	z-index: 2;
}

.feature-games-area .section-title {
	margin-bottom: 42px;
}

.feature-games-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.feature-games-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.feature-games-area .section-intro {
	max-width: 860px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.feature-games-top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 46px;
}

.feature-games-top-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
}

.feature-games-top-item i {
	color: #d4af37;
	font-size: 20px;
}

.feature-games-top-item span {
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.feature-games-grid {
	margin-top: 0;
}

.feature-game-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #07111f;
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 42px rgba(6, 13, 32, 0.14);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-game-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.1));
	pointer-events: none;
}

.feature-game-card img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.feature-game-card:hover {
	transform: translateY(-7px);
	border-color: rgba(212, 175, 55, 0.75);
	box-shadow: 0 28px 65px rgba(6, 13, 32, 0.22);
}

.feature-game-card:hover img {
	transform: scale(1.06);
	filter: brightness(0.58);
}

.feature-game-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.02) 0%, rgba(5, 11, 22, 0.42) 45%, rgba(5, 11, 22, 0.9) 100%);
	transition: background 0.35s ease;
}

.feature-game-card:hover .feature-game-overlay {
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.16) 0%, rgba(5, 11, 22, 0.62) 42%, rgba(5, 11, 22, 0.95) 100%);
}

.feature-game-overlay h4 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.feature-game-overlay a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 108px;
	padding: 8px 16px;
	border-radius: 30px;
	background: #d4af37;
	color: #07111f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 10px 22px rgba(212, 175, 55, 0.24);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.feature-game-card:hover .feature-game-overlay a {
	opacity: 1;
	transform: translateY(0);
}

.feature-game-overlay a:hover {
	background: #ffffff;
	color: #07111f;
}

.feature-games-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 34px 38px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.18);
}

.feature-games-bottom h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 10px;
}

.feature-games-bottom p {
	max-width: 780px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.feature-games-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.feature-games-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.feature-games-btn:before,
.feature-games-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.feature-games-area .section-title h2 {
		font-size: 34px;
	}

	.feature-games-top {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.feature-games-top-item {
		justify-content: flex-start;
	}

	.feature-games-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 26px;
	}

	.feature-games-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.feature-games-area .section-title h2 {
		font-size: 28px;
	}

	.feature-games-area .section-intro {
		font-size: 15px;
	}

	.feature-game-card {
		border-radius: 14px;
	}

	.feature-game-card img {
		border-radius: 14px;
	}

	.feature-game-overlay {
		padding: 12px;
	}

	.feature-game-overlay h4 {
		font-size: 10.5px;
		margin-bottom: 8px;
	}

	.feature-game-overlay a {
		min-width: auto;
		padding: 7px 12px;
		font-size: 10px;
	}

	.feature-games-bottom h3 {
		font-size: 22px;
	}
}

/**************************************
 * Table Games Section
 **************************************/

.table-games-area {
	position: relative;
	background:
		linear-gradient(180deg, #f9f6ed 0%, #ffffff 44%, #f6efe0 100%);
	overflow: hidden;
}

.table-games-area:before {
	content: "";
	position: absolute;
	top: -170px;
	left: -170px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.table-games-area:after {
	content: "";
	position: absolute;
	right: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
	pointer-events: none;
}

.table-games-area .container {
	position: relative;
	z-index: 2;
}

.table-games-area .section-title {
	margin-bottom: 42px;
}

.table-games-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.table-games-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.table-games-area .section-intro {
	max-width: 850px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.table-games-top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 46px;
}

.table-games-top-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
}

.table-games-top-item i {
	color: #d4af37;
	font-size: 20px;
}

.table-games-top-item span {
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.table-games-grid {
	margin-top: 0;
}

.table-game-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #07111f;
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 42px rgba(6, 13, 32, 0.14);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.table-game-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.08));
	pointer-events: none;
}

.table-game-card img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.table-game-card:hover {
	transform: translateY(-7px);
	border-color: rgba(212, 175, 55, 0.75);
	box-shadow: 0 28px 65px rgba(6, 13, 32, 0.22);
}

.table-game-card:hover img {
	transform: scale(1.06);
	filter: brightness(0.58);
}

.table-game-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.02) 0%, rgba(5, 11, 22, 0.38) 45%, rgba(5, 11, 22, 0.9) 100%);
	transition: background 0.35s ease;
}

.table-game-card:hover .table-game-overlay {
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.16) 0%, rgba(5, 11, 22, 0.62) 42%, rgba(5, 11, 22, 0.95) 100%);
}

.table-game-overlay h4 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.table-game-overlay a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 108px;
	padding: 8px 16px;
	border-radius: 30px;
	background: #d4af37;
	color: #07111f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 10px 22px rgba(212, 175, 55, 0.24);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.table-game-card:hover .table-game-overlay a {
	opacity: 1;
	transform: translateY(0);
}

.table-game-overlay a:hover {
	background: #ffffff;
	color: #07111f;
}

.table-games-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 34px 38px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.18);
}

.table-games-bottom h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 10px;
}

.table-games-bottom p {
	max-width: 780px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.table-games-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.table-games-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.table-games-btn:before,
.table-games-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.table-games-area .section-title h2 {
		font-size: 34px;
	}

	.table-games-top {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.table-games-top-item {
		justify-content: flex-start;
	}

	.table-games-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 26px;
	}

	.table-games-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.table-games-area .section-title h2 {
		font-size: 28px;
	}

	.table-games-area .section-intro {
		font-size: 15px;
	}

	.table-game-card {
		border-radius: 14px;
	}

	.table-game-card img {
		border-radius: 14px;
	}

	.table-game-overlay {
		padding: 12px;
	}

	.table-game-overlay h4 {
		font-size: 10.5px;
		margin-bottom: 8px;
	}

	.table-game-overlay a {
		min-width: auto;
		padding: 7px 12px;
		font-size: 10px;
	}

	.table-games-bottom h3 {
		font-size: 22px;
	}
}

/**************************************
 * Jackpot Games Section
 **************************************/

.jackpot-games-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #111c2f 48%, #07111f 100%);
	overflow: hidden;
}

.jackpot-games-area:before {
	content: "";
	position: absolute;
	top: -190px;
	right: -190px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.jackpot-games-area:after {
	content: "";
	position: absolute;
	left: -170px;
	bottom: -170px;
	width: 410px;
	height: 410px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.jackpot-games-area .container {
	position: relative;
	z-index: 2;
}

.jackpot-games-area .section-title {
	margin-bottom: 42px;
}

.jackpot-games-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.jackpot-games-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.jackpot-games-area .section-intro {
	max-width: 870px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.jackpot-games-top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 46px;
}

.jackpot-games-top-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.jackpot-games-top-item i {
	color: #d4af37;
	font-size: 20px;
}

.jackpot-games-top-item span {
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.jackpot-games-grid {
	margin-top: 0;
}

.jackpot-game-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #050b16;
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.jackpot-game-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(212, 175, 55, 0.1));
	pointer-events: none;
}

.jackpot-game-card img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.jackpot-game-card:hover {
	transform: translateY(-7px);
	border-color: rgba(212, 175, 55, 0.78);
	box-shadow: 0 28px 65px rgba(0, 0, 0, 0.46);
}

.jackpot-game-card:hover img {
	transform: scale(1.06);
	filter: brightness(0.58);
}

.jackpot-game-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.02) 0%, rgba(5, 11, 22, 0.44) 42%, rgba(5, 11, 22, 0.92) 100%);
	transition: background 0.35s ease;
}

.jackpot-game-card:hover .jackpot-game-overlay {
	background:
		linear-gradient(180deg, rgba(5, 11, 22, 0.16) 0%, rgba(5, 11, 22, 0.64) 42%, rgba(5, 11, 22, 0.96) 100%);
}

.jackpot-game-overlay h4 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.58);
}

.jackpot-game-overlay a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 108px;
	padding: 8px 16px;
	border-radius: 30px;
	background: #d4af37;
	color: #07111f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 10px 22px rgba(212, 175, 55, 0.26);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.jackpot-game-card:hover .jackpot-game-overlay a {
	opacity: 1;
	transform: translateY(0);
}

.jackpot-game-overlay a:hover {
	background: #ffffff;
	color: #07111f;
}

.jackpot-games-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 34px 38px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.jackpot-games-bottom h3 {
	color: #07111f;
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 10px;
}

.jackpot-games-bottom p {
	max-width: 780px;
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.jackpot-games-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.jackpot-games-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.jackpot-games-btn:before,
.jackpot-games-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.jackpot-games-area .section-title h2 {
		font-size: 34px;
	}

	.jackpot-games-top {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.jackpot-games-top-item {
		justify-content: flex-start;
	}

	.jackpot-games-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 26px;
	}

	.jackpot-games-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.jackpot-games-area .section-title h2 {
		font-size: 28px;
	}

	.jackpot-games-area .section-intro {
		font-size: 15px;
	}

	.jackpot-game-card {
		border-radius: 14px;
	}

	.jackpot-game-card img {
		border-radius: 14px;
	}

	.jackpot-game-overlay {
		padding: 12px;
	}

	.jackpot-game-overlay h4 {
		font-size: 10.5px;
		margin-bottom: 8px;
	}

	.jackpot-game-overlay a {
		min-width: auto;
		padding: 7px 12px;
		font-size: 10px;
	}

	.jackpot-games-bottom h3 {
		font-size: 22px;
	}
}

/**************************************
 * About Section
 **************************************/

.about-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.about-area .container {
	position: relative;
	z-index: 2;
}

.about-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.about-decor-one {
	top: -180px;
	right: -180px;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.about-decor-two {
	left: -170px;
	bottom: -170px;
	width: 410px;
	height: 410px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.about-area .section-title {
	margin-bottom: 48px;
}

.about-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.about-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.about-area .section-intro {
	max-width: 920px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.about-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
	gap: 30px;
	padding: 42px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.36);
	box-shadow: 0 28px 70px rgba(6, 13, 32, 0.2);
	margin-bottom: 34px;
	overflow: hidden;
	position: relative;
}

.about-hero-panel:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
}

.about-hero-content,
.about-hero-side {
	position: relative;
	z-index: 2;
}

.about-label,
.about-small-title {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.about-hero-content h3,
.about-text-block h3,
.about-table-heading h3,
.about-process-title h3,
.about-highlight-content h3 {
	color: #07111f;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 18px;
}

.about-hero-content h3 {
	color: #ffffff;
	font-size: 34px;
}

.about-hero-content p {
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.about-hero-content p:last-child {
	margin-bottom: 0;
}

.about-hero-content strong {
	color: #ffffff;
	font-weight: 900;
}

.about-hero-side {
	display: grid;
	gap: 16px;
	align-content: center;
}

.about-score-card {
	padding: 22px 24px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.about-score-card span {
	display: block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.about-score-card strong {
	display: block;
	color: #ffffff;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.3;
}

.about-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.about-card {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.about-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.58);
	box-shadow: 0 26px 58px rgba(6, 13, 32, 0.13);
}

.about-card:hover:before {
	opacity: 1;
}

.about-card-icon,
.about-card h4,
.about-card p {
	position: relative;
	z-index: 2;
}

.about-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
	margin-bottom: 18px;
}

.about-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
}

.about-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
}

.about-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
	gap: 30px;
	margin-bottom: 34px;
}

.about-text-block,
.about-feature-box,
.about-table-wrap,
.about-process,
.about-note {
	border-radius: 26px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
}

.about-text-block {
	padding: 36px;
}

.about-text-block p {
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 22px;
}

.about-check-list {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.about-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.about-check-list i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.about-feature-box {
	padding: 30px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
}

.about-feature-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.about-feature-header i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 20px;
}

.about-feature-header h4 {
	color: #07111f;
	font-size: 22px;
	font-weight: 900;
	margin: 0;
}

.about-feature-list {
	display: grid;
	gap: 16px;
}

.about-feature-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: flex-start;
	padding: 18px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.about-feature-item > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.16);
	color: #a77f13;
	font-size: 13px;
	font-weight: 900;
}

.about-feature-item h5 {
	color: #07111f;
	font-size: 17px;
	font-weight: 900;
	margin-bottom: 6px;
}

.about-feature-item p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.65;
	margin: 0;
}

.about-table-wrap {
	padding: 34px;
	margin-bottom: 34px;
}

.about-table-heading {
	text-align: center;
	margin-bottom: 24px;
}

.about-info-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.about-info-table th,
.about-info-table td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 15px;
	line-height: 1.6;
}

.about-info-table tr:last-child th,
.about-info-table tr:last-child td {
	border-bottom: none;
}

.about-info-table th {
	width: 32%;
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
}

.about-info-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.about-columns-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.about-list-box {
	padding: 30px 28px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
}

.about-list-box h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 18px;
}

.about-list-box ul {
	display: grid;
	gap: 12px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.about-list-box li {
	position: relative;
	color: #5f6878;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	padding-left: 22px;
}

.about-list-box li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d4af37;
}

.about-process {
	padding: 34px;
	margin-bottom: 34px;
}

.about-process-title {
	text-align: center;
	margin-bottom: 28px;
}

.about-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.about-process-step {
	position: relative;
	padding: 28px 22px;
	border-radius: 22px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.25);
}

.about-process-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 18px;
}

.about-process-step h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 10px;
}

.about-process-step p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
}

.about-highlight-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.2);
	margin-bottom: 24px;
}

.about-highlight-content span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}

.about-highlight-content h3 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 12px;
}

.about-highlight-content p {
	max-width: 820px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.about-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.about-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.about-cta-btn:before,
.about-cta-btn:after {
	display: none;
}

.about-note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 22px 24px;
	background: #fffaf0;
}

.about-note i {
	color: #d4af37;
	font-size: 20px;
	margin-top: 4px;
}

.about-note p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	.about-area .section-title h2 {
		font-size: 34px;
	}

	.about-hero-panel,
	.about-two-column {
		grid-template-columns: 1fr;
	}

	.about-hero-panel {
		padding: 34px 28px;
	}

	.about-card-grid,
	.about-columns-grid,
	.about-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-highlight-strip {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.about-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.about-card-grid,
	.about-columns-grid,
	.about-process-grid,
	.about-feature-row {
		grid-template-columns: 1fr;
	}

	.about-info-table th,
	.about-info-table td {
		display: block;
		width: 100%;
	}

	.about-info-table th {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.about-info-table td {
		padding-top: 8px;
	}
}

@media only screen and (max-width: 575px) {
	.about-area .section-title h2 {
		font-size: 28px;
	}

	.about-area .section-intro {
		font-size: 15px;
	}

	.about-hero-content h3 {
		font-size: 27px;
	}

	.about-hero-panel,
	.about-text-block,
	.about-feature-box,
	.about-table-wrap,
	.about-process {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.about-hero-content p,
	.about-text-block p {
		font-size: 15px;
	}

	.about-card,
	.about-list-box {
		padding: 26px 22px;
	}

	.about-highlight-content h3 {
		font-size: 24px;
	}

	.about-note {
		padding: 20px;
	}
}

/**************************************
 * Advantages Section
 **************************************/

.advantages-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 46%, #07111f 100%);
	overflow: hidden;
}

.advantages-area .container {
	position: relative;
	z-index: 2;
}

.advantages-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.advantages-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.advantages-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.advantages-area .section-title {
	margin-bottom: 46px;
}

.advantages-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.advantages-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.advantages-area .section-intro {
	max-width: 900px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.advantages-main-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
	gap: 30px;
	align-items: center;
	padding: 42px;
	margin-bottom: 34px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.advantages-label,
.advantages-small-title {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.advantages-main-content h3,
.advantages-comparison-heading h3,
.advantages-highlight-content h3 {
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.advantages-main-content p {
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
}

.advantages-main-stats {
	display: grid;
	gap: 16px;
}

.advantages-stat {
	padding: 22px 24px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.advantages-stat strong {
	display: block;
	color: #07111f;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 6px;
}

.advantages-stat span {
	display: block;
	color: #5f6878;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.advantage-card {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advantage-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-7px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.advantage-card:hover:before {
	opacity: 1;
}

.advantage-icon,
.advantage-card h4,
.advantage-card p {
	position: relative;
	z-index: 2;
}

.advantage-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.advantage-card h4 {
	color: #07111f;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 12px;
}

.advantage-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin: 0;
}

.advantages-comparison {
	padding: 34px;
	margin-bottom: 34px;
	border-radius: 28px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.advantages-comparison-heading {
	text-align: center;
	margin-bottom: 26px;
}

.advantages-comparison-heading h3 {
	color: #07111f;
}

.advantages-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.advantages-table th,
.advantages-table td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 15px;
	line-height: 1.6;
}

.advantages-table tr:last-child td {
	border-bottom: none;
}

.advantages-table th {
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.advantages-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.advantages-table td:first-child {
	color: #07111f;
	font-weight: 900;
	background: #fbf7ed;
	width: 22%;
}

.advantages-highlight {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.advantages-highlight-content span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}

.advantages-highlight-content h3 {
	color: #07111f;
	font-size: 28px;
	margin-bottom: 12px;
}

.advantages-highlight-content p {
	max-width: 820px;
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.advantages-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.advantages-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.advantages-cta-btn:before,
.advantages-cta-btn:after {
	display: none;
}

@media only screen and (max-width: 1199px) {
	.advantages-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.advantages-area .section-title h2 {
		font-size: 34px;
	}

	.advantages-main-panel {
		grid-template-columns: 1fr;
		padding: 34px 28px;
	}

	.advantages-highlight {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.advantages-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.advantages-table th,
	.advantages-table td {
		display: block;
		width: 100%;
	}

	.advantages-table th {
		display: none;
	}

	.advantages-table td:first-child {
		width: 100%;
		border-bottom: none;
		padding-bottom: 8px;
	}

	.advantages-table td:nth-child(2):before {
		content: "Onsite Casino";
		display: block;
		color: #07111f;
		font-size: 12px;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-bottom: 6px;
	}

	.advantages-table td:nth-child(3):before {
		content: "Online Casino Access";
		display: block;
		color: #07111f;
		font-size: 12px;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-bottom: 6px;
	}
}

@media only screen and (max-width: 575px) {
	.advantages-area .section-title h2 {
		font-size: 28px;
	}

	.advantages-area .section-intro {
		font-size: 15px;
	}

	.advantages-main-content h3,
	.advantages-comparison-heading h3,
	.advantages-highlight-content h3 {
		font-size: 24px;
	}

	.advantages-main-panel,
	.advantages-comparison {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.advantage-card {
		padding: 26px 22px;
	}

	.advantages-highlight {
		padding: 28px 22px;
		border-radius: 22px;
	}
}

/**************************************
 * Getting Started Section
 **************************************/

.start-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.start-area .container {
	position: relative;
	z-index: 2;
}

.start-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.start-decor-one {
	top: -180px;
	right: -180px;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.start-decor-two {
	left: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.start-area .section-title {
	margin-bottom: 48px;
}

.start-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.start-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.start-area .section-intro {
	max-width: 900px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.start-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	gap: 34px;
	align-items: stretch;
}

.start-content-panel,
.start-bonus-card {
	position: relative;
	border-radius: 30px;
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.14);
	overflow: hidden;
}

.start-content-panel {
	padding: 42px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.start-content-panel:before {
	content: "";
	position: absolute;
	top: -130px;
	right: -130px;
	width: 310px;
	height: 310px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.start-label,
.start-bonus-label {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.start-content-panel h3 {
	position: relative;
	z-index: 2;
	color: #07111f;
	font-size: 32px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.start-content-panel > p {
	position: relative;
	z-index: 2;
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 30px;
}

.start-steps {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 18px;
}

.start-step {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 18px;
	padding: 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.start-step:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 175, 55, 0.58);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.1);
}

.start-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.5px;
}

.start-step-content h4 {
	color: #07111f;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 8px;
}

.start-step-content p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
	margin: 0;
}

.start-bonus-panel {
	display: flex;
}

.start-bonus-card {
	width: 100%;
	padding: 42px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.38);
	color: #ffffff;
}

.start-bonus-card:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.24) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.start-bonus-card:after {
	content: "";
	position: absolute;
	left: -90px;
	bottom: -90px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.start-bonus-card h3,
.start-bonus-value,
.start-bonus-card p,
.start-bonus-list,
.start-bonus-btn,
.start-bonus-note {
	position: relative;
	z-index: 2;
}

.start-bonus-card h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 12px;
}

.start-bonus-value {
	margin-bottom: 22px;
	padding: 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.32);
}

.start-bonus-value strong {
	display: block;
	color: #d4af37;
	font-size: 46px;
	font-weight: 1000;
	line-height: 1;
	letter-spacing: -1px;
	margin-bottom: 8px;
}

.start-bonus-value span {
	display: block;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

.start-bonus-card p {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 22px;
}

.start-bonus-list {
	display: grid;
	gap: 12px;
	margin-bottom: 28px;
}

.start-bonus-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.start-bonus-list i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.16);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.start-bonus-btn {
	width: 100%;
	margin-top: 0;
	padding: 13px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.start-bonus-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.start-bonus-btn:before,
.start-bonus-btn:after {
	display: none;
}

.start-bonus-note {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
}

@media only screen and (max-width: 991px) {
	.start-area .section-title h2 {
		font-size: 34px;
	}

	.start-layout {
		grid-template-columns: 1fr;
	}

	.start-content-panel,
	.start-bonus-card {
		padding: 34px 28px;
	}
}

@media only screen and (max-width: 575px) {
	.start-area .section-title h2 {
		font-size: 28px;
	}

	.start-area .section-intro {
		font-size: 15px;
	}

	.start-content-panel h3 {
		font-size: 26px;
	}

	.start-step {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.start-bonus-value strong {
		font-size: 38px;
	}

	.start-bonus-value span {
		font-size: 19px;
	}
}

/**************************************
 * Bonuses Section
 **************************************/

.bonuses-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 44%, #07111f 100%);
	overflow: hidden;
}

.bonuses-area .container {
	position: relative;
	z-index: 2;
}

.bonuses-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.bonuses-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.bonuses-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.bonuses-area .section-title {
	margin-bottom: 46px;
}

.bonuses-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.bonuses-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.bonuses-area .section-intro {
	max-width: 920px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.bonuses-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.bonuses-hero-content,
.bonuses-welcome-card,
.bonuses-info-card,
.bonus-program-card,
.bonuses-rewards-panel,
.bonuses-current-promos,
.bonuses-terms-box {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.bonuses-hero-content {
	padding: 42px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.bonuses-label,
.bonuses-small-title {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.bonuses-hero-content h3,
.bonuses-section-heading h3,
.bonuses-rewards-content h3,
.bonuses-current-heading h3,
.bonuses-terms-box h3 {
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.bonuses-hero-content p {
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 28px;
}

.bonuses-hero-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.bonuses-hero-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonuses-hero-item i {
	color: #d4af37;
	font-size: 19px;
}

.bonuses-hero-item span {
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.bonuses-welcome-card {
	position: relative;
	padding: 38px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(32, 19, 55, 0.96));
	overflow: hidden;
}

.bonuses-welcome-card:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.bonuses-welcome-card span,
.bonuses-welcome-card h3,
.bonuses-welcome-card strong,
.bonuses-welcome-card p,
.bonuses-welcome-card a,
.bonuses-welcome-card small {
	position: relative;
	z-index: 2;
}

.bonuses-welcome-card span {
	display: block;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	margin-bottom: 18px;
}

.bonuses-welcome-card h3 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 10px;
}

.bonuses-welcome-card strong {
	display: block;
	color: #d4af37;
	font-size: 46px;
	font-weight: 1000;
	line-height: 1;
	letter-spacing: -1px;
	margin-bottom: 10px;
}

.bonuses-welcome-card p {
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 24px;
}

.bonuses-main-btn {
	width: 100%;
	margin-top: 0;
	padding: 13px 30px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.bonuses-main-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.bonuses-main-btn:before,
.bonuses-main-btn:after,
.bonuses-cta-btn:before,
.bonuses-cta-btn:after {
	display: none;
}

.bonuses-welcome-card small {
	display: block;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
}

.bonuses-tabs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 44px;
}

.bonuses-info-card {
	position: relative;
	padding: 30px 26px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bonuses-info-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bonuses-info-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.bonuses-info-card:hover:before {
	opacity: 1;
}

.bonuses-info-icon,
.bonuses-info-card h4,
.bonuses-info-card p {
	position: relative;
	z-index: 2;
}

.bonuses-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.bonuses-info-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
}

.bonuses-info-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin: 0;
}

.bonuses-section-heading {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 34px;
}

.bonuses-section-heading p,
.bonuses-current-heading p {
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.bonus-offers-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 48px;
}

.bonus-offer-card {
	position: relative;
	min-height: 250px;
	padding: 34px;
	border-radius: 28px;
	background: #141923;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
	overflow: hidden;
}

.bonus-offer-card:before {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	opacity: 0.72;
	pointer-events: none;
}

.bonus-offer-red:before {
	background: radial-gradient(circle, rgba(255, 48, 48, 0.4) 0%, rgba(255, 48, 48, 0) 70%);
}

.bonus-offer-gold:before {
	background: radial-gradient(circle, rgba(212, 175, 55, 0.42) 0%, rgba(212, 175, 55, 0) 70%);
}

.bonus-offer-green:before {
	background: radial-gradient(circle, rgba(20, 180, 110, 0.4) 0%, rgba(20, 180, 110, 0) 70%);
}

.bonus-offer-purple:before {
	background: radial-gradient(circle, rgba(160, 80, 255, 0.4) 0%, rgba(160, 80, 255, 0) 70%);
}

.bonus-offer-blue:before {
	background: radial-gradient(circle, rgba(50, 130, 255, 0.42) 0%, rgba(50, 130, 255, 0) 70%);
}

.bonus-offer-emerald:before {
	background: radial-gradient(circle, rgba(30, 210, 130, 0.4) 0%, rgba(30, 210, 130, 0) 70%);
}

.bonus-offer-ruby:before {
	background: radial-gradient(circle, rgba(255, 35, 95, 0.4) 0%, rgba(255, 35, 95, 0) 70%);
}

.bonus-offer-violet:before {
	background: radial-gradient(circle, rgba(140, 80, 255, 0.4) 0%, rgba(140, 80, 255, 0) 70%);
}

.bonus-offer-card span,
.bonus-offer-card h4,
.bonus-offer-card p,
.bonus-offer-card a {
	position: relative;
	z-index: 2;
}

.bonus-offer-card span {
	display: block;
	color: #d4af37;
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 18px;
}

.bonus-offer-card h4 {
	color: #ffffff;
	font-size: 34px;
	font-weight: 1000;
	line-height: 1.2;
	margin-bottom: 10px;
}

.bonus-offer-card p {
	color: #d8dde7;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.35;
	margin-bottom: 28px;
}

.bonus-offer-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	padding: 11px 24px;
	border-radius: 50px;
	border: 2px solid rgba(255, 255, 255, 0.78);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.bonus-offer-card a:hover {
	background: #d4af37;
	border-color: #d4af37;
	color: #07111f;
}

.bonus-program-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 48px;
}

.bonus-program-card {
	position: relative;
	padding: 30px 26px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bonus-program-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.bonus-program-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.bonus-program-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 10px;
}

.bonus-program-card strong {
	display: block;
	color: #d4af37;
	font-size: 22px;
	font-weight: 1000;
	line-height: 1.25;
	margin-bottom: 12px;
}

.bonus-program-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin: 0;
}

.bonuses-rewards-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: 30px;
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.bonuses-rewards-content h3,
.bonuses-current-heading h3 {
	color: #07111f;
}

.bonuses-rewards-content p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 24px;
}

.bonuses-check-list {
	display: grid;
	gap: 14px;
}

.bonuses-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.bonuses-check-list i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.bonuses-rewards-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.bonuses-rewards-table th,
.bonuses-rewards-table td {
	padding: 17px 18px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 14px;
	line-height: 1.6;
}

.bonuses-rewards-table tr:last-child th,
.bonuses-rewards-table tr:last-child td {
	border-bottom: none;
}

.bonuses-rewards-table th {
	width: 34%;
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
}

.bonuses-rewards-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.bonuses-current-promos {
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.bonuses-current-heading {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 28px;
}

.bonuses-current-heading p {
	color: #5f6878;
}

.bonuses-current-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.bonuses-current-item {
	padding: 24px 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.bonuses-current-item h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 10px;
}

.bonuses-current-item p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
}

.bonuses-terms-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.bonuses-terms-box p {
	max-width: 850px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.bonuses-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.bonuses-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

@media only screen and (max-width: 1199px) {
	.bonuses-current-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.bonuses-area .section-title h2 {
		font-size: 34px;
	}

	.bonuses-hero,
	.bonuses-rewards-panel {
		grid-template-columns: 1fr;
	}

	.bonuses-hero-list,
	.bonuses-tabs-grid,
	.bonus-program-grid {
		grid-template-columns: 1fr;
	}

	.bonus-offers-grid {
		grid-template-columns: 1fr;
	}

	.bonuses-terms-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.bonuses-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.bonuses-area .section-title h2 {
		font-size: 28px;
	}

	.bonuses-area .section-intro {
		font-size: 15px;
	}

	.bonuses-hero-content,
	.bonuses-welcome-card,
	.bonuses-rewards-panel,
	.bonuses-current-promos {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.bonus-offer-card {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.bonus-offer-card h4 {
		font-size: 27px;
	}

	.bonus-offer-card p {
		font-size: 18px;
	}

	.bonuses-current-grid {
		grid-template-columns: 1fr;
	}

	.bonuses-rewards-table th,
	.bonuses-rewards-table td {
		display: block;
		width: 100%;
	}

	.bonuses-rewards-table th {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.bonuses-rewards-table td {
		padding-top: 8px;
	}

	.bonuses-terms-box h3 {
		font-size: 24px;
	}
}

/**************************************
 * Gaming Opportunities Section
 **************************************/

.gaming-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 46%, #ffffff 100%);
	overflow: hidden;
}

.gaming-area .container {
	position: relative;
	z-index: 2;
}

.gaming-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.gaming-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.gaming-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.gaming-area .section-title {
	margin-bottom: 48px;
}

.gaming-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.gaming-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.gaming-area .section-intro {
	max-width: 940px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.gaming-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.gaming-hero-content,
.gaming-hours-card,
.gaming-category-card,
.gaming-info-panel,
.gaming-online-panel,
.gaming-table-wrap,
.gaming-highlight {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.14);
}

.gaming-hero-content {
	position: relative;
	padding: 42px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	overflow: hidden;
}

.gaming-hero-content:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.gaming-label,
.gaming-small-title {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.gaming-hero-content h3,
.gaming-online-heading h3,
.gaming-table-heading h3,
.gaming-highlight-content h3,
.gaming-info-panel h3 {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.gaming-hero-content p {
	position: relative;
	z-index: 2;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.gaming-hero-content p:last-child {
	margin-bottom: 0;
}

.gaming-hours-card {
	padding: 34px;
	border-radius: 30px;
	background: #ffffff;
}

.gaming-hours-card > span {
	display: block;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	margin-bottom: 22px;
}

.gaming-hours-row {
	padding: 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
	margin-bottom: 16px;
}

.gaming-hours-row strong {
	display: block;
	color: #07111f;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 8px;
}

.gaming-hours-row p {
	color: #5f6878;
	font-size: 18px;
	font-weight: 800;
	margin: 0;
}

.gaming-hours-card small {
	display: block;
	color: #6c7480;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	margin-top: 12px;
}

.gaming-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.gaming-stat-card {
	padding: 28px 24px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
	text-align: center;
}

.gaming-stat-card strong {
	display: block;
	color: #07111f;
	font-size: 34px;
	font-weight: 1000;
	line-height: 1;
	margin-bottom: 10px;
}

.gaming-stat-card span {
	display: block;
	color: #5f6878;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.gaming-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.gaming-category-card {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gaming-category-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gaming-category-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(6, 13, 32, 0.14);
}

.gaming-category-card:hover:before {
	opacity: 1;
}

.gaming-category-icon,
.gaming-category-card h4,
.gaming-category-card p,
.gaming-category-card ul {
	position: relative;
	z-index: 2;
}

.gaming-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.gaming-category-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
}

.gaming-category-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 18px;
}

.gaming-category-card ul {
	display: grid;
	gap: 9px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.gaming-category-card li {
	position: relative;
	color: #4f5968;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	padding-left: 18px;
}

.gaming-category-card li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d4af37;
}

.gaming-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 34px;
}

.gaming-info-panel {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
}

.gaming-info-panel h3 {
	color: #07111f;
}

.gaming-info-panel p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 24px;
}

.gaming-dark-panel {
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.gaming-dark-panel h3 {
	color: #ffffff;
}

.gaming-dark-panel p {
	color: #d8dde7;
}

.gaming-benefit-list {
	display: grid;
	gap: 14px;
}

.gaming-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.gaming-dark-panel .gaming-benefit-item {
	color: #ffffff;
}

.gaming-benefit-item i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.gaming-online-panel {
	padding: 38px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(6, 32, 25, 0.96));
	margin-bottom: 34px;
}

.gaming-online-heading {
	text-align: center;
	max-width: 880px;
	margin: 0 auto 32px;
}

.gaming-online-heading p {
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.gaming-online-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.gaming-online-column {
	padding: 26px 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.22);
}

.gaming-online-column h4 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 22px;
}

.gaming-online-column ul {
	display: grid;
	gap: 14px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.gaming-online-column li {
	color: #d4af37;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
}

.gaming-table-wrap {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
	margin-bottom: 34px;
}

.gaming-table-heading {
	text-align: center;
	margin-bottom: 24px;
}

.gaming-table-heading h3 {
	color: #07111f;
}

.gaming-info-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.gaming-info-table th,
.gaming-info-table td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 15px;
	line-height: 1.6;
}

.gaming-info-table tr:last-child th,
.gaming-info-table tr:last-child td {
	border-bottom: none;
}

.gaming-info-table th {
	width: 30%;
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
}

.gaming-info-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.gaming-highlight {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.gaming-highlight-content span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}

.gaming-highlight-content h3 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 12px;
}

.gaming-highlight-content p {
	max-width: 850px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.gaming-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.gaming-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.gaming-cta-btn:before,
.gaming-cta-btn:after {
	display: none;
}

@media only screen and (max-width: 1199px) {
	.gaming-category-grid,
	.gaming-online-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.gaming-area .section-title h2 {
		font-size: 34px;
	}

	.gaming-hero-panel,
	.gaming-two-column {
		grid-template-columns: 1fr;
	}

	.gaming-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gaming-highlight {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.gaming-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.gaming-area .section-title h2 {
		font-size: 28px;
	}

	.gaming-area .section-intro {
		font-size: 15px;
	}

	.gaming-hero-content,
	.gaming-hours-card,
	.gaming-online-panel,
	.gaming-table-wrap,
	.gaming-info-panel {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.gaming-hero-content h3,
	.gaming-online-heading h3,
	.gaming-table-heading h3,
	.gaming-info-panel h3 {
		font-size: 24px;
	}

	.gaming-stats-grid,
	.gaming-category-grid,
	.gaming-online-grid {
		grid-template-columns: 1fr;
	}

	.gaming-info-table th,
	.gaming-info-table td {
		display: block;
		width: 100%;
	}

	.gaming-info-table th {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.gaming-info-table td {
		padding-top: 8px;
	}

	.gaming-highlight {
		padding: 28px 22px;
		border-radius: 22px;
	}
}

/**************************************
 * Slots Section
 **************************************/

.slots-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 46%, #07111f 100%);
	overflow: hidden;
}

.slots-area .container {
	position: relative;
	z-index: 2;
}

.slots-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.slots-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.slots-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.slots-area .section-title {
	margin-bottom: 48px;
}

.slots-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.slots-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.slots-area .section-intro {
	max-width: 940px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.slots-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.slots-hero-content,
.slots-hero-card,
.slots-category-card,
.slots-how-panel,
.slots-info-card,
.slots-table-wrap,
.slots-providers-panel,
.slots-comparison-wrap,
.slots-highlight {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.slots-hero-content {
	position: relative;
	padding: 42px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	overflow: hidden;
}

.slots-hero-content:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.slots-label,
.slots-small-title {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.slots-hero-content h3,
.slots-how-content h3,
.slots-info-card h3,
.slots-table-heading h3,
.slots-providers-content h3,
.slots-highlight-content h3 {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.slots-hero-content p {
	position: relative;
	z-index: 2;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.slots-hero-content p:last-child {
	margin-bottom: 0;
}

.slots-hero-card {
	position: relative;
	padding: 38px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(32, 19, 55, 0.96));
	overflow: hidden;
}

.slots-hero-card:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.slots-hero-card span,
.slots-hero-card h3,
.slots-hero-card strong,
.slots-hero-card p,
.slots-hero-card a {
	position: relative;
	z-index: 2;
}

.slots-hero-card span {
	display: block;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	margin-bottom: 18px;
}

.slots-hero-card h3 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 12px;
}

.slots-hero-card strong {
	display: block;
	color: #d4af37;
	font-size: 42px;
	font-weight: 1000;
	line-height: 1.05;
	margin-bottom: 14px;
}

.slots-hero-card p {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 24px;
}

.slots-main-btn,
.slots-cta-btn {
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.slots-main-btn {
	width: 100%;
}

.slots-main-btn:hover,
.slots-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.slots-main-btn:before,
.slots-main-btn:after,
.slots-cta-btn:before,
.slots-cta-btn:after {
	display: none;
}

.slots-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.slots-category-card {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.slots-category-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.slots-category-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.slots-category-card:hover:before {
	opacity: 1;
}

.slots-category-icon,
.slots-category-card h4,
.slots-category-card p,
.slots-category-card ul {
	position: relative;
	z-index: 2;
}

.slots-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.slots-category-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
}

.slots-category-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 18px;
}

.slots-category-card ul {
	display: grid;
	gap: 9px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.slots-category-card li {
	position: relative;
	color: #4f5968;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	padding-left: 18px;
}

.slots-category-card li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d4af37;
}

.slots-how-panel {
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.slots-how-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 30px;
}

.slots-how-content h3 {
	color: #07111f;
}

.slots-how-content p,
.slots-table-heading p,
.slots-providers-content p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
}

.slots-mechanics-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.slots-mechanic-item {
	padding: 26px 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
}

.slots-mechanic-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 16px;
}

.slots-mechanic-item h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 10px;
}

.slots-mechanic-item p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
}

.slots-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 34px;
}

.slots-info-card {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
}

.slots-info-card h3 {
	color: #07111f;
}

.slots-info-card p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 24px;
}

.slots-dark-card {
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.slots-dark-card h3 {
	color: #ffffff;
}

.slots-dark-card p {
	color: #d8dde7;
}

.slots-check-list {
	display: grid;
	gap: 14px;
}

.slots-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.slots-dark-card .slots-check-list li {
	color: #ffffff;
}

.slots-check-list i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.slots-table-wrap,
.slots-comparison-wrap {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
	margin-bottom: 34px;
}

.slots-table-heading {
	text-align: center;
	max-width: 880px;
	margin: 0 auto 26px;
}

.slots-table-heading h3,
.slots-providers-content h3 {
	color: #07111f;
}

.slots-info-table,
.slots-comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.slots-info-table th,
.slots-info-table td,
.slots-comparison-table th,
.slots-comparison-table td {
	padding: 17px 18px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 14px;
	line-height: 1.6;
}

.slots-info-table tr:last-child td,
.slots-comparison-table tr:last-child td {
	border-bottom: none;
}

.slots-info-table th,
.slots-comparison-table th {
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.slots-info-table td,
.slots-comparison-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.slots-info-table td:first-child,
.slots-comparison-table td:first-child {
	color: #07111f;
	font-weight: 900;
	background: #fbf7ed;
}

.slots-providers-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 30px;
	align-items: center;
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.slots-provider-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.slots-provider-item {
	padding: 16px 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
}

.slots-highlight {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.slots-highlight-content span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}

.slots-highlight-content h3 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 12px;
}

.slots-highlight-content p {
	max-width: 850px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.slots-cta-btn {
	flex: 0 0 auto;
}

@media only screen and (max-width: 1199px) {
	.slots-category-grid,
	.slots-mechanics-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.slots-provider-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.slots-area .section-title h2 {
		font-size: 34px;
	}

	.slots-hero-panel,
	.slots-two-column,
	.slots-providers-panel {
		grid-template-columns: 1fr;
	}

	.slots-highlight {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.slots-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.slots-area .section-title h2 {
		font-size: 28px;
	}

	.slots-area .section-intro {
		font-size: 15px;
	}

	.slots-hero-content,
	.slots-hero-card,
	.slots-how-panel,
	.slots-info-card,
	.slots-table-wrap,
	.slots-providers-panel,
	.slots-comparison-wrap {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.slots-hero-content h3,
	.slots-how-content h3,
	.slots-info-card h3,
	.slots-table-heading h3,
	.slots-providers-content h3 {
		font-size: 24px;
	}

	.slots-category-grid,
	.slots-mechanics-grid,
	.slots-provider-grid {
		grid-template-columns: 1fr;
	}

	.slots-info-table th,
	.slots-info-table td,
	.slots-comparison-table th,
	.slots-comparison-table td {
		display: block;
		width: 100%;
	}

	.slots-info-table th,
	.slots-comparison-table th {
		display: none;
	}

	.slots-info-table td:first-child,
	.slots-comparison-table td:first-child {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.slots-highlight {
		padding: 28px 22px;
		border-radius: 22px;
	}
}

/**************************************
 * Table & Live Casino Section
 **************************************/

.table-live-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 46%, #ffffff 100%);
	overflow: hidden;
}

.table-live-area .container {
	position: relative;
	z-index: 2;
}

.table-live-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.table-live-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.table-live-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.table-live-area .section-title {
	margin-bottom: 48px;
}

.table-live-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.table-live-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	text-transform: none;
	margin-bottom: 18px;
}

.table-live-area .section-intro {
	max-width: 950px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.table-live-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.table-live-hero-content,
.table-live-side-card,
.table-live-card,
.table-live-panel,
.table-live-online,
.table-live-how,
.table-live-comparison,
.table-live-titles,
.table-live-providers,
.table-live-highlight {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.14);
}

.table-live-hero-content {
	position: relative;
	padding: 42px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	overflow: hidden;
}

.table-live-hero-content:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.table-live-label,
.table-live-small-title {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.table-live-hero-content h3,
.table-live-panel-content h3,
.table-live-online-heading h3,
.table-live-how-heading h3,
.table-live-table-heading h3,
.table-live-providers-content h3,
.table-live-highlight-content h3 {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.table-live-hero-content p {
	position: relative;
	z-index: 2;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.table-live-hero-content p:last-child {
	margin-bottom: 0;
}

.table-live-side-card {
	padding: 34px;
	border-radius: 30px;
	background: #ffffff;
}

.table-live-side-card > span {
	display: block;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	margin-bottom: 22px;
}

.table-live-side-card ul {
	display: grid;
	gap: 14px;
	margin-bottom: 28px;
}

.table-live-side-card li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #07111f;
}

.table-live-side-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
}

.table-live-side-card strong {
	font-size: 15px;
	font-weight: 900;
	line-height: 1.4;
}

.table-live-main-btn,
.table-live-cta-btn {
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.table-live-main-btn {
	width: 100%;
}

.table-live-main-btn:hover,
.table-live-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.table-live-main-btn:before,
.table-live-main-btn:after,
.table-live-cta-btn:before,
.table-live-cta-btn:after {
	display: none;
}

.table-live-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.table-live-stat {
	padding: 28px 24px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
	text-align: center;
}

.table-live-stat strong {
	display: block;
	color: #07111f;
	font-size: 27px;
	font-weight: 1000;
	line-height: 1;
	margin-bottom: 10px;
}

.table-live-stat span {
	display: block;
	color: #5f6878;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.table-live-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.table-live-card {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.table-live-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.table-live-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(6, 13, 32, 0.14);
}

.table-live-card:hover:before {
	opacity: 1;
}

.table-live-icon,
.table-live-card h4,
.table-live-card p,
.table-live-card ul {
	position: relative;
	z-index: 2;
}

.table-live-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.table-live-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
}

.table-live-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 18px;
}

.table-live-card ul {
	display: grid;
	gap: 9px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.table-live-card li {
	position: relative;
	color: #4f5968;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	padding-left: 18px;
}

.table-live-card li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d4af37;
}

.table-live-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 30px;
	align-items: center;
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.table-live-panel-content h3,
.table-live-table-heading h3,
.table-live-providers-content h3 {
	color: #07111f;
}

.table-live-panel-content p,
.table-live-online-heading p,
.table-live-titles p,
.table-live-providers-content p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 24px;
}

.table-live-benefits {
	display: grid;
	gap: 14px;
}

.table-live-benefit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.table-live-benefit i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.table-live-panel-box {
	padding: 28px 26px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.table-live-panel-box h4 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 18px;
}

.table-live-panel-box ul {
	display: grid;
	gap: 12px;
}

.table-live-panel-box li {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.table-live-online {
	padding: 38px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(6, 32, 25, 0.96));
	margin-bottom: 34px;
}

.table-live-online-heading {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 32px;
}

.table-live-online-heading p {
	color: #d8dde7;
	margin-bottom: 0;
}

.table-live-online-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.table-live-online-column {
	padding: 26px 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.22);
}

.table-live-online-column h4 {
	color: #ffffff;
	font-size: 23px;
	font-weight: 900;
	margin-bottom: 22px;
}

.table-live-online-column ul {
	display: grid;
	gap: 14px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.table-live-online-column li {
	color: #d4af37;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
}

.table-live-how {
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.table-live-how-heading {
	text-align: center;
	margin-bottom: 28px;
}

.table-live-how-heading h3 {
	color: #07111f;
}

.table-live-how-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.table-live-how-item {
	padding: 26px 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
}

.table-live-how-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 16px;
}

.table-live-how-item h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 10px;
}

.table-live-how-item p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
}

.table-live-comparison,
.table-live-titles {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
	margin-bottom: 34px;
}

.table-live-table-heading {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 26px;
}

.table-live-table-heading h3 {
	color: #07111f;
}

.table-live-table-heading p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
}

.table-live-info-table,
.table-live-titles-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.table-live-info-table th,
.table-live-info-table td,
.table-live-titles-table th,
.table-live-titles-table td {
	padding: 17px 18px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 14px;
	line-height: 1.6;
}

.table-live-info-table tr:last-child td,
.table-live-titles-table tr:last-child td {
	border-bottom: none;
}

.table-live-info-table th,
.table-live-titles-table th {
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.table-live-info-table td,
.table-live-titles-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.table-live-info-table td:first-child,
.table-live-titles-table td:first-child {
	color: #07111f;
	font-weight: 900;
	background: #fbf7ed;
}

.table-live-providers {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 30px;
	align-items: center;
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.table-live-providers-content h3 {
	color: #07111f;
}

.table-live-provider-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.table-live-provider-item {
	padding: 16px 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
}

.table-live-highlight {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.table-live-highlight-content span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}

.table-live-highlight-content h3 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 12px;
}

.table-live-highlight-content p {
	max-width: 850px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.table-live-cta-btn {
	flex: 0 0 auto;
}

@media only screen and (max-width: 1199px) {
	.table-live-grid,
	.table-live-online-grid,
	.table-live-how-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.table-live-area .section-title h2 {
		font-size: 34px;
	}

	.table-live-hero,
	.table-live-panel,
	.table-live-providers {
		grid-template-columns: 1fr;
	}

	.table-live-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.table-live-highlight {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.table-live-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.table-live-area .section-title h2 {
		font-size: 28px;
	}

	.table-live-area .section-intro {
		font-size: 15px;
	}

	.table-live-hero-content,
	.table-live-side-card,
	.table-live-panel,
	.table-live-online,
	.table-live-how,
	.table-live-comparison,
	.table-live-titles,
	.table-live-providers {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.table-live-hero-content h3,
	.table-live-panel-content h3,
	.table-live-online-heading h3,
	.table-live-how-heading h3,
	.table-live-table-heading h3,
	.table-live-providers-content h3 {
		font-size: 24px;
	}

	.table-live-stats,
	.table-live-grid,
	.table-live-online-grid,
	.table-live-how-grid,
	.table-live-provider-grid {
		grid-template-columns: 1fr;
	}

	.table-live-info-table th,
	.table-live-info-table td,
	.table-live-titles-table th,
	.table-live-titles-table td {
		display: block;
		width: 100%;
	}

	.table-live-info-table th,
	.table-live-titles-table th {
		display: none;
	}

	.table-live-info-table td:first-child,
	.table-live-titles-table td:first-child {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.table-live-highlight {
		padding: 28px 22px;
		border-radius: 22px;
	}
}

/**************************************
 * App Section
 **************************************/

.app-area {
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.app-area .container {
	position: relative;
	z-index: 2;
}

.app-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.app-decor-one {
	top: -180px;
	right: -180px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
}

.app-decor-two {
	left: -160px;
	bottom: -160px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.10) 0%, rgba(7, 17, 31, 0) 70%);
}

.app-area .section-title {
	margin-bottom: 48px;
}

.app-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.app-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	margin-bottom: 18px;
}

.app-area .section-intro {
	max-width: 920px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.app-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
}

.app-column {
	display: grid;
	gap: 28px;
}

.app-content-card,
.app-image-card {
	border-radius: 28px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.26);
	box-shadow: 0 20px 55px rgba(6, 13, 32, 0.10);
	overflow: hidden;
}

.app-content-card {
	padding: 34px 32px;
}

.app-label {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.app-content-card h3,
.app-image-content h3 {
	color: #07111f;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 16px;
}

.app-content-card p,
.app-image-content p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.app-content-card p:last-child,
.app-image-content p:last-child {
	margin-bottom: 0;
}

.app-feature-list {
	display: grid;
	gap: 18px;
	margin-top: 26px;
}

.app-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.22);
}

.app-feature-item i {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 20px;
}

.app-feature-item h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
}

.app-feature-item p {
	color: #5f6878;
	font-size: 14px;
	line-height: 1.75;
	margin: 0;
}

.app-check-list {
	display: grid;
	gap: 14px;
	margin-top: 22px;
	padding-left: 0;
	list-style: none;
}

.app-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
}

.app-check-list i {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.app-image-card {
	background: #ffffff;
}

.app-image-wrap {
	padding: 24px 24px 0;
}

.app-image-wrap img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
	background: #f6f6f6;
}

.app-image-content {
	padding: 28px 30px 32px;
}

.app-store-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

.app-store-buttons a {
	display: inline-flex;
	align-items: center;
}

.app-store-buttons img {
	height: 54px;
	width: auto;
	display: block;
}

.app-install-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 10px;
}

.app-install-box {
	padding: 22px 20px;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.22);
}

.app-install-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.app-install-title i {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 20px;
}

.app-install-title h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 800;
	margin: 0;
}

.app-install-box ol {
	margin: 0;
	padding-left: 18px;
}

.app-install-box li {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 8px;
}

.app-install-box li:last-child {
	margin-bottom: 0;
}

.app-note-box {
	margin-top: 24px;
	padding: 24px 24px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.app-note-box h4 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 12px;
}

.app-note-box p {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	.app-area .section-title h2 {
		font-size: 34px;
	}

	.app-layout {
		grid-template-columns: 1fr;
	}

	.app-install-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 575px) {
	.app-area .section-title h2 {
		font-size: 28px;
	}

	.app-area .section-intro {
		font-size: 15px;
	}

	.app-content-card,
	.app-image-content {
		padding: 28px 22px;
	}

	.app-image-wrap {
		padding: 18px 18px 0;
	}

	.app-content-card h3,
	.app-image-content h3 {
		font-size: 24px;
	}

	.app-store-buttons img {
		height: 48px;
	}
}

/**************************************
 * Payments Section
 **************************************/

.payments-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.payments-area .container {
	position: relative;
	z-index: 2;
}

.payments-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.payments-decor-one {
	top: -180px;
	right: -180px;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.payments-decor-two {
	left: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.payments-area .section-title {
	margin-bottom: 48px;
}

.payments-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.payments-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	margin-bottom: 18px;
}

.payments-area .section-intro {
	max-width: 920px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.payments-intro-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.payments-intro-content,
.payments-table-panel,
.payments-info-card,
.payments-note-box {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.14);
}

.payments-intro-content {
	position: relative;
	padding: 42px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	overflow: hidden;
}

.payments-intro-content:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.payments-label {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.payments-intro-content h3,
.payments-note-box h3 {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.payments-intro-content p {
	position: relative;
	z-index: 2;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.payments-intro-content p:last-child {
	margin-bottom: 0;
}

.payments-intro-stats {
	display: grid;
	gap: 16px;
}

.payments-stat-card {
	padding: 24px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 18px 45px rgba(6, 13, 32, 0.08);
}

.payments-stat-card strong {
	display: block;
	color: #07111f;
	font-size: 24px;
	font-weight: 1000;
	line-height: 1.2;
	margin-bottom: 8px;
}

.payments-stat-card span {
	display: block;
	color: #5f6878;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	line-height: 1.45;
}

.payments-table-panel {
	max-width: 980px;
	margin: 0 auto 42px;
	padding: 28px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.payments-table-panel input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.payments-tabs {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 26px;
}

.payments-tabs label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 11px 22px;
	border-radius: 50px;
	border: 1px solid rgba(212, 175, 55, 0.45);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

#payment-tab-deposit:checked ~ .payments-tabs label[for="payment-tab-deposit"],
#payment-tab-withdrawal:checked ~ .payments-tabs label[for="payment-tab-withdrawal"] {
	background: #d4af37;
	border-color: #d4af37;
	color: #07111f;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
}

.payments-table-wrap {
	display: none;
}

#payment-tab-deposit:checked ~ .payments-deposit-table {
	display: block;
}

#payment-tab-withdrawal:checked ~ .payments-withdrawal-table {
	display: block;
}

.payments-table-title {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 24px;
}

.payments-table-title h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 10px;
}

.payments-table-title p {
	color: #d8dde7;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
}

.payments-table {
	display: grid;
	gap: 10px;
}

.payment-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 64px;
	padding: 12px 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.payment-row:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(212, 175, 55, 0.35);
}

.payment-method {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.payment-method strong {
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
}

.payment-icon-group {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
}

.payment-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	max-width: 52px;
	object-fit: contain;
	padding: 7px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	display: inline-block;
}

.payment-icon-group .payment-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	max-width: 46px;
}
.payment-limit {
	flex: 0 0 auto;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
}

.payments-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.payments-info-card {
	position: relative;
	padding: 30px 26px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.payments-info-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.payments-info-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(6, 13, 32, 0.14);
}

.payments-info-card:hover:before {
	opacity: 1;
}

.payments-info-icon,
.payments-info-card h4,
.payments-info-card p {
	position: relative;
	z-index: 2;
}

.payments-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.payments-info-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
}

.payments-info-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin: 0;
}

.payments-note-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.payments-note-box p {
	max-width: 850px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.payments-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.payments-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.payments-cta-btn:before,
.payments-cta-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.payments-area .section-title h2 {
		font-size: 34px;
	}

	.payments-intro-panel {
		grid-template-columns: 1fr;
	}

	.payments-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.payments-note-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.payments-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.payments-table-panel {
		padding: 20px;
		border-radius: 24px;
	}

	.payments-tabs {
		flex-direction: column;
		gap: 10px;
	}

	.payments-tabs label {
		width: 100%;
		min-width: 0;
	}

	.payment-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.payment-limit {
		padding-left: 52px;
	}

	.payments-info-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 575px) {
	.payments-area .section-title h2 {
		font-size: 28px;
	}

	.payments-area .section-intro {
		font-size: 15px;
	}

	.payments-intro-content {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.payments-intro-content h3,
	.payments-note-box h3 {
		font-size: 24px;
	}

	.payments-table-title h3 {
		font-size: 22px;
	}

	.payment-method strong {
		font-size: 14px;
	}

	.payment-icon {
		width: 34px;
		height: 34px;
		min-width: 34px;
		max-width: 34px;
		padding: 7px;
	}

	.payment-limit {
		font-size: 13px;
		padding-left: 48px;
	}

	.payments-info-card {
		padding: 26px 22px;
	}

	.payments-note-box {
		padding: 28px 22px;
		border-radius: 22px;
	}
}

/**************************************
 * Land-Based Casino Visitor Guide
 **************************************/

.visitor-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.visitor-area .container {
	position: relative;
	z-index: 2;
}

.visitor-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.visitor-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.visitor-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.visitor-area .section-title {
	margin-bottom: 48px;
}

.visitor-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.visitor-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	margin-bottom: 18px;
}

.visitor-area .section-intro {
	max-width: 980px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.visitor-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.visitor-hero-content,
.visitor-quick-card,
.visitor-hours-panel,
.visitor-info-card,
.visitor-dress-panel,
.visitor-gaming-panel,
.visitor-table-wrap,
.visitor-dining-panel,
.visitor-text-card,
.visitor-service-card,
.visitor-family-panel,
.visitor-faq-panel,
.visitor-responsible-panel {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.14);
}

.visitor-hero-content {
	position: relative;
	padding: 42px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	overflow: hidden;
}

.visitor-hero-content:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.visitor-label,
.visitor-small-title {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.visitor-hero-content h3,
.visitor-hours-content h3,
.visitor-panel-heading h3,
.visitor-table-heading h3,
.visitor-text-card h3,
.visitor-family-content h3,
.visitor-responsible-panel h3 {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.visitor-hero-content p {
	position: relative;
	z-index: 2;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.visitor-hero-content p:last-child {
	margin-bottom: 0;
}

.visitor-hero-content strong {
	color: #ffffff;
	font-weight: 900;
}

.visitor-quick-card {
	padding: 34px;
	border-radius: 30px;
	background: #ffffff;
}

.visitor-quick-card > span {
	display: block;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	margin-bottom: 22px;
}

.visitor-quick-row {
	padding: 20px 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
	margin-bottom: 14px;
}

.visitor-quick-row:last-child {
	margin-bottom: 0;
}

.visitor-quick-row strong {
	display: block;
	color: #07111f;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 6px;
}

.visitor-quick-row p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	margin: 0;
}

.visitor-hours-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 30px;
	align-items: center;
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.visitor-hours-content h3,
.visitor-panel-heading h3,
.visitor-table-heading h3,
.visitor-text-card h3,
.visitor-family-content h3 {
	color: #07111f;
}

.visitor-hours-content p,
.visitor-panel-heading p,
.visitor-family-content p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
}

.visitor-hours-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.visitor-hour-card {
	padding: 22px;
	border-radius: 20px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.visitor-hour-card strong {
	display: block;
	color: #d4af37;
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 8px;
}

.visitor-hour-card span {
	display: block;
	color: #ffffff;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.35;
}

.visitor-info-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.visitor-info-card,
.visitor-gaming-card,
.visitor-dining-card,
.visitor-service-card,
.visitor-faq-item {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.visitor-info-card:before,
.visitor-gaming-card:before,
.visitor-dining-card:before,
.visitor-service-card:before,
.visitor-faq-item:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.visitor-info-card:hover,
.visitor-gaming-card:hover,
.visitor-dining-card:hover,
.visitor-service-card:hover,
.visitor-faq-item:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(6, 13, 32, 0.14);
}

.visitor-info-card:hover:before,
.visitor-gaming-card:hover:before,
.visitor-dining-card:hover:before,
.visitor-service-card:hover:before,
.visitor-faq-item:hover:before {
	opacity: 1;
}

.visitor-info-icon,
.visitor-info-card h4,
.visitor-info-card p,
.visitor-info-card ul,
.visitor-gaming-icon,
.visitor-gaming-card h4,
.visitor-gaming-card p,
.visitor-gaming-card ul,
.visitor-dining-card h4,
.visitor-dining-card p,
.visitor-service-icon,
.visitor-service-card h4,
.visitor-service-card p,
.visitor-faq-item h4,
.visitor-faq-item p {
	position: relative;
	z-index: 2;
}

.visitor-info-icon,
.visitor-gaming-icon,
.visitor-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.visitor-info-card h4,
.visitor-gaming-card h4,
.visitor-dining-card h4,
.visitor-service-card h4,
.visitor-faq-item h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 12px;
	line-height: 1.3;
}

.visitor-info-card p,
.visitor-gaming-card p,
.visitor-dining-card p,
.visitor-service-card p,
.visitor-faq-item p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 18px;
}

.visitor-service-card p,
.visitor-dining-card p,
.visitor-faq-item p {
	margin-bottom: 0;
}

.visitor-info-card ul,
.visitor-gaming-card ul,
.visitor-dress-card ul {
	display: grid;
	gap: 9px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.visitor-info-card li,
.visitor-gaming-card li,
.visitor-dress-card li {
	position: relative;
	color: #4f5968;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	padding-left: 18px;
}

.visitor-info-card li:before,
.visitor-gaming-card li:before,
.visitor-dress-card li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d4af37;
}

.visitor-dress-panel,
.visitor-gaming-panel,
.visitor-dining-panel,
.visitor-faq-panel {
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.visitor-dress-content,
.visitor-panel-heading,
.visitor-table-heading {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 30px;
}

.visitor-dress-content h3 {
	color: #07111f;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.visitor-dress-content p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
}

.visitor-dress-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.visitor-dress-card {
	padding: 28px 24px;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
}

.visitor-dress-card h4 {
	color: #07111f;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 18px;
}

.visitor-gaming-grid,
.visitor-dining-grid,
.visitor-service-grid,
.visitor-faq-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.visitor-gaming-grid,
.visitor-dining-grid,
.visitor-faq-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visitor-table-wrap {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
	margin-bottom: 34px;
}

.visitor-info-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.visitor-info-table th,
.visitor-info-table td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 15px;
	line-height: 1.6;
}

.visitor-info-table tr:last-child th,
.visitor-info-table tr:last-child td {
	border-bottom: none;
}

.visitor-info-table th {
	width: 30%;
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
}

.visitor-info-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.visitor-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 34px;
}

.visitor-text-card {
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
}

.visitor-text-card p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 24px;
}

.visitor-dark-card {
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.visitor-dark-card h3 {
	color: #ffffff;
}

.visitor-dark-card p {
	color: #d8dde7;
}

.visitor-check-list {
	display: grid;
	gap: 14px;
}

.visitor-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.visitor-dark-card .visitor-check-list li {
	color: #ffffff;
}

.visitor-check-list i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.visitor-service-grid {
	margin-bottom: 34px;
}

.visitor-family-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
	gap: 30px;
	align-items: center;
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.visitor-family-list {
	display: grid;
	gap: 14px;
}

.visitor-family-item {
	padding: 20px 22px;
	border-radius: 20px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.visitor-family-item strong {
	display: block;
	color: #d4af37;
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 7px;
}

.visitor-family-item span {
	display: block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.visitor-responsible-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.visitor-responsible-panel p {
	max-width: 870px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.visitor-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.visitor-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.visitor-cta-btn:before,
.visitor-cta-btn:after {
	display: none;
}

@media only screen and (max-width: 1199px) {
	.visitor-info-grid,
	.visitor-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.visitor-area .section-title h2 {
		font-size: 34px;
	}

	.visitor-hero-panel,
	.visitor-hours-panel,
	.visitor-two-column,
	.visitor-family-panel {
		grid-template-columns: 1fr;
	}

	.visitor-responsible-panel {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.visitor-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.visitor-hours-grid,
	.visitor-info-grid,
	.visitor-dress-grid,
	.visitor-gaming-grid,
	.visitor-dining-grid,
	.visitor-service-grid,
	.visitor-faq-grid {
		grid-template-columns: 1fr;
	}

	.visitor-info-table th,
	.visitor-info-table td {
		display: block;
		width: 100%;
	}

	.visitor-info-table th {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.visitor-info-table td {
		padding-top: 8px;
	}
}

@media only screen and (max-width: 575px) {
	.visitor-area .section-title h2 {
		font-size: 28px;
	}

	.visitor-area .section-intro {
		font-size: 15px;
	}

	.visitor-hero-content,
	.visitor-quick-card,
	.visitor-hours-panel,
	.visitor-dress-panel,
	.visitor-gaming-panel,
	.visitor-table-wrap,
	.visitor-dining-panel,
	.visitor-text-card,
	.visitor-family-panel,
	.visitor-faq-panel {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.visitor-hero-content h3,
	.visitor-hours-content h3,
	.visitor-panel-heading h3,
	.visitor-table-heading h3,
	.visitor-text-card h3,
	.visitor-family-content h3,
	.visitor-responsible-panel h3,
	.visitor-dress-content h3 {
		font-size: 24px;
	}

	.visitor-info-card,
	.visitor-gaming-card,
	.visitor-dining-card,
	.visitor-service-card,
	.visitor-faq-item {
		padding: 26px 22px;
	}

	.visitor-responsible-panel {
		padding: 28px 22px;
		border-radius: 22px;
	}
}

/**************************************
 * Trust, Safety & Responsible Casino Operations
 **************************************/

.trust-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 46%, #07111f 100%);
	overflow: hidden;
}

.trust-area .container {
	position: relative;
	z-index: 2;
}

.trust-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.trust-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.trust-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.trust-area .section-title {
	margin-bottom: 48px;
}

.trust-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.trust-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	margin-bottom: 18px;
}

.trust-area .section-intro {
	max-width: 980px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.trust-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.trust-hero-content,
.trust-status-card,
.trust-card,
.trust-process-panel,
.trust-table-wrap,
.trust-support-panel,
.trust-warning-box {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.trust-hero-content {
	position: relative;
	padding: 42px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	overflow: hidden;
}

.trust-hero-content:before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.trust-label,
.trust-small-title {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.trust-hero-content h3,
.trust-panel-heading h3,
.trust-table-heading h3,
.trust-support-content h3,
.trust-warning-box h3 {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 16px;
}

.trust-hero-content p {
	position: relative;
	z-index: 2;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 16px;
}

.trust-hero-content p:last-child {
	margin-bottom: 0;
}

.trust-status-card {
	padding: 34px;
	border-radius: 30px;
	background: #ffffff;
}

.trust-status-card > span {
	display: block;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	margin-bottom: 22px;
}

.trust-status-row {
	padding: 20px 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
	margin-bottom: 14px;
}

.trust-status-row:last-child {
	margin-bottom: 0;
}

.trust-status-row strong {
	display: block;
	color: #07111f;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 6px;
}

.trust-status-row p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	margin: 0;
}

.trust-pill-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 34px;
}

.trust-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.trust-pill i {
	color: #d4af37;
	font-size: 20px;
}

.trust-pill span {
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.trust-card {
	position: relative;
	padding: 30px 24px;
	border-radius: 24px;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.trust-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.62);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.trust-card:hover:before {
	opacity: 1;
}

.trust-card-icon,
.trust-card h4,
.trust-card p,
.trust-card ul {
	position: relative;
	z-index: 2;
}

.trust-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 22px;
}

.trust-card h4 {
	color: #07111f;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 12px;
}

.trust-card p {
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 18px;
}

.trust-card ul {
	display: grid;
	gap: 9px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.trust-card li {
	position: relative;
	color: #4f5968;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	padding-left: 18px;
}

.trust-card li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d4af37;
}

.trust-process-panel,
.trust-table-wrap,
.trust-support-panel {
	padding: 38px;
	border-radius: 30px;
	background: #ffffff;
	margin-bottom: 34px;
}

.trust-panel-heading,
.trust-table-heading {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 30px;
}

.trust-panel-heading h3,
.trust-table-heading h3,
.trust-support-content h3 {
	color: #07111f;
}

.trust-panel-heading p,
.trust-support-content p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
}

.trust-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.trust-process-step {
	padding: 26px 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
	border: 1px solid rgba(212, 175, 55, 0.26);
}

.trust-process-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 16px;
}

.trust-process-step h4 {
	color: #07111f;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 10px;
}

.trust-process-step p {
	color: #5f6878;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
}

.trust-info-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(7, 17, 31, 0.08);
}

.trust-info-table th,
.trust-info-table td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(7, 17, 31, 0.08);
	vertical-align: top;
	font-size: 15px;
	line-height: 1.6;
}

.trust-info-table tr:last-child th,
.trust-info-table tr:last-child td {
	border-bottom: none;
}

.trust-info-table th {
	width: 30%;
	color: #07111f;
	background: #f7f1e3;
	font-weight: 900;
}

.trust-info-table td {
	color: #5f6878;
	font-weight: 600;
	background: #ffffff;
}

.trust-support-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 30px;
	align-items: center;
}

.trust-support-content p {
	margin-bottom: 24px;
}

.trust-check-list {
	display: grid;
	gap: 14px;
}

.trust-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #4f5968;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.trust-check-list i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 12px;
	margin-top: 1px;
}

.trust-contact-card {
	padding: 30px 28px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.trust-contact-card span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}

.trust-contact-card h4 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 14px;
}

.trust-contact-card p {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 18px;
}

.trust-contact-card strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 50px;
	background: #d4af37;
	color: #07111f;
	font-size: 18px;
	font-weight: 1000;
}

.trust-warning-box {
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.trust-warning-box p {
	max-width: 900px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

@media only screen and (max-width: 1199px) {
	.trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 991px) {
	.trust-area .section-title h2 {
		font-size: 34px;
	}

	.trust-hero-panel,
	.trust-support-panel {
		grid-template-columns: 1fr;
	}

	.trust-pill-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px) {
	.trust-grid,
	.trust-process-grid,
	.trust-pill-grid {
		grid-template-columns: 1fr;
	}

	.trust-info-table th,
	.trust-info-table td {
		display: block;
		width: 100%;
	}

	.trust-info-table th {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.trust-info-table td {
		padding-top: 8px;
	}
}

@media only screen and (max-width: 575px) {
	.trust-area .section-title h2 {
		font-size: 28px;
	}

	.trust-area .section-intro {
		font-size: 15px;
	}

	.trust-hero-content,
	.trust-status-card,
	.trust-process-panel,
	.trust-table-wrap,
	.trust-support-panel,
	.trust-warning-box {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.trust-hero-content h3,
	.trust-panel-heading h3,
	.trust-table-heading h3,
	.trust-support-content h3,
	.trust-warning-box h3 {
		font-size: 24px;
	}

	.trust-card {
		padding: 26px 22px;
	}

	.trust-contact-card strong {
		width: 100%;
		font-size: 16px;
	}
}

/**************************************
 * FAQ Section
 **************************************/

.faq-area {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8f4ea 48%, #ffffff 100%);
	overflow: hidden;
}

.faq-area .container {
	position: relative;
	z-index: 2;
}

.faq-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.faq-decor-one {
	top: -180px;
	right: -180px;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.faq-decor-two {
	left: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	background: radial-gradient(circle, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0) 70%);
}

.faq-area .section-title {
	margin-bottom: 48px;
}

.faq-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.faq-area .section-title h2 {
	color: #07111f;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	margin-bottom: 18px;
}

.faq-area .section-intro {
	max-width: 900px;
	margin: 0 auto;
	color: #555f6f;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.faq-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 36px;
}

.faq-column {
	display: grid;
	gap: 16px;
	align-content: start;
}

.faq-item {
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(212, 175, 55, 0.28);
	box-shadow: 0 16px 42px rgba(6, 13, 32, 0.08);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(212, 175, 55, 0.6);
	box-shadow: 0 24px 55px rgba(6, 13, 32, 0.12);
}

.faq-item input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.faq-question {
	position: relative;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) 26px;
	gap: 16px;
	align-items: center;
	width: 100%;
	padding: 22px 24px;
	cursor: pointer;
	margin: 0;
}

.faq-question span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 13px;
	font-weight: 900;
}

.faq-question strong {
	color: #07111f;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.4;
}

.faq-question i {
	color: #d4af37;
	font-size: 15px;
	text-align: right;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	padding: 0 24px 24px 86px;
	color: #5f6878;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.faq-item input:checked ~ .faq-question {
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
}

.faq-item input:checked ~ .faq-question strong {
	color: #ffffff;
}

.faq-item input:checked ~ .faq-question span {
	background: #d4af37;
	color: #07111f;
}

.faq-item input:checked ~ .faq-question i {
	transform: rotate(45deg);
}

.faq-item input:checked ~ .faq-answer {
	max-height: 260px;
}

.faq-item input:checked ~ .faq-answer p {
	padding-top: 22px;
}

.faq-bottom-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(19, 32, 55, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.34);
	box-shadow: 0 24px 60px rgba(6, 13, 32, 0.18);
}

.faq-bottom-box h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 10px;
}

.faq-bottom-box p {
	max-width: 800px;
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.faq-cta-btn {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 12px 32px;
	border-radius: 50px;
	border-color: #d4af37;
	background: #d4af37;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.faq-cta-btn:hover {
	background: transparent;
	color: #d4af37;
	border-color: #d4af37;
}

.faq-cta-btn:before,
.faq-cta-btn:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.faq-area .section-title h2 {
		font-size: 34px;
	}

	.faq-layout {
		grid-template-columns: 1fr;
	}

	.faq-bottom-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 28px;
	}

	.faq-cta-btn {
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.faq-area .section-title h2 {
		font-size: 28px;
	}

	.faq-area .section-intro {
		font-size: 15px;
	}

	.faq-question {
		grid-template-columns: 38px minmax(0, 1fr) 22px;
		gap: 12px;
		padding: 20px 18px;
	}

	.faq-question span {
		width: 36px;
		height: 36px;
		font-size: 12px;
	}

	.faq-question strong {
		font-size: 15px;
	}

	.faq-answer p {
		padding: 0 18px 22px 68px;
		font-size: 14px;
	}

	.faq-item input:checked ~ .faq-answer {
		max-height: 360px;
	}

	.faq-bottom-box {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.faq-bottom-box h3 {
		font-size: 22px;
	}
}

/**************************************
 * Player Reviews Section
 **************************************/

.reviews-area {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 46%, #07111f 100%);
	overflow: hidden;
}

.reviews-area .container {
	position: relative;
	z-index: 2;
}

.reviews-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.reviews-decor-one {
	top: -190px;
	right: -190px;
	width: 470px;
	height: 470px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.reviews-decor-two {
	left: -170px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.reviews-area .section-title {
	margin-bottom: 48px;
}

.reviews-area .sub-title {
	color: #d4af37;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.reviews-area .section-title h2 {
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.22;
	margin-bottom: 18px;
}

.reviews-area .section-intro {
	max-width: 920px;
	margin: 0 auto;
	color: #d8dde7;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.reviews-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 34px;
	align-items: stretch;
}

.reviews-image-card,
.review-card {
	border: 1px solid rgba(212, 175, 55, 0.32);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.reviews-image-card {
	position: relative;
	height: 100%;
	min-height: 620px;
	border-radius: 30px;
	overflow: hidden;
	background: #07111f;
}

.reviews-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.02);
}

.reviews-image-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 17, 31, 0.05) 0%, rgba(7, 17, 31, 0.42) 38%, rgba(7, 17, 31, 0.94) 100%);
	z-index: 1;
}

.reviews-image-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 38px;
}

.reviews-image-overlay span {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}

.reviews-image-overlay h3 {
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 14px;
}

.reviews-image-overlay p {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.reviews-content-column {
	display: flex;
	align-items: center;
}

.reviews-carousel {
	width: 100%;
}

.review-card {
	position: relative;
	min-height: 560px;
	padding: 44px;
	border-radius: 30px;
	background: #ffffff;
	overflow: hidden;
}

.review-card:before {
	content: "“";
	position: absolute;
	top: -38px;
	right: 28px;
	color: rgba(212, 175, 55, 0.18);
	font-size: 190px;
	font-family: Georgia, serif;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.review-top,
.review-card > p,
.review-author {
	position: relative;
	z-index: 2;
}

.review-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 26px;
}

.review-category {
	display: inline-block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}

.review-top h3 {
	color: #07111f;
	font-size: 29px;
	font-weight: 900;
	line-height: 1.28;
	margin: 0;
}

.review-stars {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 12px;
	border-radius: 50px;
	background: #f7f1e3;
	border: 1px solid rgba(212, 175, 55, 0.24);
}

.review-stars i {
	color: #d4af37;
	font-size: 14px;
}

.review-card > p {
	color: #5f6878;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
	margin-bottom: 34px;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 26px;
	border-top: 1px solid rgba(7, 17, 31, 0.08);
}

.review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #07111f;
	color: #d4af37;
	font-size: 20px;
	font-weight: 1000;
}

.review-author strong {
	display: block;
	color: #07111f;
	font-size: 17px;
	font-weight: 900;
	margin-bottom: 4px;
}

.review-author span {
	display: block;
	color: #6b7280;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.reviews-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 26px;
}

.reviews-control-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(212, 175, 55, 0.4);
	background: rgba(255, 255, 255, 0.08);
	color: #d4af37;
	font-size: 22px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.reviews-control-btn:hover {
	background: #d4af37;
	color: #07111f;
	border-color: #d4af37;
}

.reviews-indicators {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
}

.reviews-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.35);
	opacity: 1;
	margin: 0;
	transition: all 0.3s ease;
}

.reviews-indicators .active {
	width: 28px;
	border-radius: 30px;
	background: #d4af37;
}

@media only screen and (max-width: 991px) {
	.reviews-area .section-title h2 {
		font-size: 34px;
	}

	.reviews-layout {
		grid-template-columns: 1fr;
	}

	.reviews-image-card {
		min-height: 440px;
	}

	.review-card {
		min-height: auto;
	}
}

@media only screen and (max-width: 575px) {
	.reviews-area .section-title h2 {
		font-size: 28px;
	}

	.reviews-area .section-intro {
		font-size: 15px;
	}

	.reviews-image-card {
		min-height: 380px;
		border-radius: 22px;
	}

	.reviews-image-overlay {
		padding: 28px 22px;
	}

	.reviews-image-overlay h3 {
		font-size: 24px;
	}

	.review-card {
		padding: 30px 22px;
		border-radius: 22px;
	}

	.review-top {
		flex-direction: column;
	}

	.review-top h3 {
		font-size: 23px;
	}

	.review-card > p {
		font-size: 15px;
		line-height: 1.8;
	}

	.review-author {
		align-items: flex-start;
	}

	.reviews-controls {
		gap: 12px;
	}

	.reviews-control-btn {
		width: 42px;
		height: 42px;
	}
}

/**************************************
 * Footer Section
 **************************************/

.footer-section {
	position: relative;
	background: #07111f;
	overflow: hidden;
}

.footer-top-wrapper {
	position: relative;
	background:
		linear-gradient(180deg, #07111f 0%, #101b2d 54%, #07111f 100%);
	overflow: hidden;
}

.footer-top-wrapper .container {
	position: relative;
	z-index: 2;
}

.footer-decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.footer-decor-one {
	top: -180px;
	right: -180px;
	width: 440px;
	height: 440px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
}

.footer-decor-two {
	left: -160px;
	bottom: -160px;
	width: 390px;
	height: 390px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
}

.footer-about {
	padding-right: 30px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 24px;
}

.footer-logo img {
	display: block;
	max-width: 250px;
	width: auto;
	height: auto;
}

.footer-about p {
	color: #d8dde7;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.85;
	margin-bottom: 22px;
}

.footer-trust-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 18px;
	margin-bottom: 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.footer-trust-note i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	color: #d4af37;
	font-size: 13px;
	margin-top: 2px;
}

.footer-trust-note span {
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.footer-social-icon {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.footer-social-icon li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.28);
	color: #d4af37;
	font-size: 15px;
	transition: all 0.3s ease;
}

.footer-social-icon li a:hover {
	background: #d4af37;
	border-color: #d4af37;
	color: #07111f;
	transform: translateY(-3px);
}

.footer-list {
	margin-bottom: 30px;
}

.footer-list .title {
	position: relative;
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 24px;
	padding-bottom: 14px;
}

.footer-list .title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 3px;
	border-radius: 3px;
	background: #d4af37;
}

.footer-list ul {
	display: grid;
	gap: 12px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.footer-list ul li a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #d8dde7;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	transition: color 0.3s ease, transform 0.3s ease;
}

.footer-list ul li a:before {
	content: "";
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.7);
	transition: background 0.3s ease, transform 0.3s ease;
}

.footer-list ul li a:hover {
	color: #d4af37;
	transform: translateX(4px);
}

.footer-list ul li a:hover:before {
	background: #d4af37;
	transform: scale(1.2);
}

.footer-payment-box {
	margin-top: 26px;
	padding: 20px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.footer-payment-box span {
	display: block;
	color: #d4af37;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 14px;
}

.footer-payment-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-payment-icons img {
	width: 42px;
	height: 42px;
	min-width: 42px;
	max-width: 42px;
	object-fit: contain;
	padding: 7px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 28px;
	padding: 24px 26px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(212, 175, 55, 0.28);
}

.footer-disclaimer-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #d4af37;
	color: #07111f;
	font-size: 18px;
}

.footer-disclaimer p {
	color: #d8dde7;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

.footer-bottom-wrapper {
	position: relative;
	background: #050b16;
	border-top: 1px solid rgba(212, 175, 55, 0.22);
	padding: 22px 0;
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.footer-copyright-text p {
	color: #d8dde7;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.footer-bottom-links a {
	color: #d8dde7;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #d4af37;
}

@media only screen and (max-width: 991px) {
	.footer-about {
		padding-right: 0;
		margin-bottom: 34px;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom-links {
		justify-content: center;
	}
}

@media only screen and (max-width: 575px) {
	.footer-logo img {
		max-width: 220px;
	}

	.footer-disclaimer {
		flex-direction: column;
		padding: 22px;
	}

	.footer-payment-icons img {
		width: 38px;
		height: 38px;
		min-width: 38px;
		max-width: 38px;
	}

	.footer-bottom-links {
		gap: 12px;
	}

	.footer-bottom-links a {
		font-size: 12px;
	}
}

.navbar-brand img {
  width: 140px;   /* нужная ширина */
  height: auto;   /* сохраняет пропорции */
}

/* --- ROYAT NAVBAR CTA VISIBILITY FIX --- */
.royat-navbar .mobile-play-btn {
  display: none !important;
}
.royat-navbar .nav-cta-item,
.royat-navbar .navbar-play-btn {
  display: inline-block !important;
}
@media only screen and (max-width: 991px) {
  .royat-navbar .navbar-collapse,
  .royat-navbar .navbar-toggler,
  .royat-navbar .nav-cta-item,
  .royat-navbar .navbar-play-btn {
    display: none !important;
  }
  .royat-navbar .mobile-play-btn {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 992px) {
  .royat-navbar .mobile-play-btn {
    display: none !important;
  }
  .royat-navbar .navbar-collapse {
    display: flex !important;
  }
}
/* --- END ROYAT NAVBAR CTA VISIBILITY FIX --- */


/* --- ROYAT NAV BUTTON VISIBILITY FIX --- */
.royat-navbar .mobile-play-btn,
.navbar-area .mobile-play-btn {
  display: none !important;
}
.royat-navbar .navbar-play-btn,
.navbar-area .navbar-play-btn {
  display: inline-block !important;
}
@media (max-width: 991px) {
  .royat-navbar .nav-cta-item,
  .navbar-area .nav-cta-item {
    display: none !important;
  }
  .royat-navbar .mobile-play-btn,
  .navbar-area .mobile-play-btn {
    display: inline-block !important;
    margin-left: auto;
    margin-right: 56px;
    margin-top: 0;
    white-space: nowrap;
  }
}
@media (max-width: 575px) {
  .royat-navbar .mobile-play-btn,
  .navbar-area .mobile-play-btn {
    padding: 8px 18px;
    font-size: 13px;
    margin-right: 48px;
  }
}
/* --- END ROYAT NAV BUTTON VISIBILITY FIX --- */


/* --- LEGAL PAGES: Casino de Royat --- */
.footer-legal-links {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
  padding:24px 15px;
  background:#060d20;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer-legal-links a {
  color:#fff;
  font-weight:700;
}
.footer-legal-links a:hover {
  color:#ffbf12;
}
body.legal-page-body {
  background:#f8f8f9 !important;
  color:#333 !important;
}
.legal-navbar {
  background:#060d20 !important;
  box-shadow:0 10px 35px rgba(0,0,0,.24);
}
.legal-navbar .navbar-brand img {
  max-height:70px;
  width:auto;
}
.legal-main {
  background:#f8f8f9 !important;
}
.legal-hero-section {
  padding:190px 0 80px;
  background:linear-gradient(135deg,#060d20 0%,#131c30 58%,#ffbf12 150%) !important;
  position:relative;
  overflow:hidden;
}
.legal-hero-section:before {
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  top:-180px;
  right:-160px;
  border-radius:50%;
  background:rgba(255,191,18,.22);
  filter:blur(8px);
}
.legal-hero-card {
  position:relative;
  z-index:2;
  max-width:1120px;
  padding:52px;
  border-radius:28px;
  background:#fff !important;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 30px 95px rgba(0,0,0,.30);
}
.legal-kicker {
  display:inline-block;
  color:#b98500 !important;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:16px;
}
.legal-hero-card h1 {
  color:#131c30 !important;
  font-size:clamp(42px,6vw,78px);
  font-weight:900;
  line-height:1.08;
  margin-bottom:22px;
  font-family:'Fondamento', cursive;
}
.legal-hero-card p {
  color:#4f5868 !important;
  font-size:18px;
  line-height:1.85;
  max-width:920px;
}
.legal-meta-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.legal-meta-row span {
  background:#fff7df !important;
  color:#131c30 !important;
  border:1px solid rgba(255,191,18,.35);
  border-radius:999px;
  padding:10px 16px;
  font-size:14px;
}
.legal-meta-row strong {
  color:#131c30 !important;
}
.legal-content-section {
  padding:80px 0 110px;
}
.legal-content-layout {
  display:grid;
  grid-template-columns:285px minmax(0,1fr);
  gap:38px;
  align-items:start;
}
.legal-sidebar {
  position:sticky;
  top:110px;
  padding:26px;
  border-radius:22px;
  background:#060d20 !important;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}
.legal-sidebar h2 {
  color:#fff !important;
  font-size:26px;
  font-weight:800;
  margin-bottom:16px;
}
.legal-sidebar a {
  display:block;
  color:rgba(255,255,255,.86) !important;
  padding:11px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.legal-sidebar a:hover {
  color:#ffbf12 !important;
  padding-left:5px;
}
.legal-sidebar hr {
  border-color:rgba(255,255,255,.14);
  opacity:1;
  margin:16px 0;
}
.legal-article {
  background:#fff !important;
  border-radius:26px;
  padding:46px;
  box-shadow:0 20px 80px rgba(0,0,0,.10);
}
.legal-article section {
  padding-bottom:34px;
  margin-bottom:34px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.legal-article section:last-child {
  border-bottom:0;
  margin-bottom:0;
  padding-bottom:0;
}
.legal-article h2 {
  color:#131c30 !important;
  font-size:clamp(28px,3vw,42px);
  font-weight:800;
  margin-bottom:16px;
}
.legal-article p,
.legal-article li {
  color:#4f5868 !important;
  font-size:16px;
  line-height:1.85;
}
.legal-article p {
  margin-bottom:16px;
}
.legal-article ul {
  margin:18px 0;
  padding-left:0;
}
.legal-article li {
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
}
.legal-article li:before {
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ffbf12;
  position:absolute;
  left:0;
  top:.65em;
  box-shadow:0 0 0 5px rgba(255,191,18,.18);
}
.legal-article strong {
  color:#131c30 !important;
}
.legal-footer {
  background:#060d20 !important;
  color:#fff;
  padding:50px 0 28px;
}
.legal-footer-grid {
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:28px;
  align-items:start;
}
.legal-footer-brand {
  color:#fff !important;
  font-size:26px;
  font-weight:800;
  margin-bottom:12px;
}
.legal-footer p {
  color:rgba(255,255,255,.74) !important;
  max-width:720px;
}
.legal-footer-menu {
  display:grid;
  gap:10px;
}
.legal-footer-menu a {
  color:rgba(255,255,255,.84) !important;
}
.legal-footer-menu a:hover {
  color:#ffbf12 !important;
}
.legal-footer-copy {
  margin-top:32px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.68);
}

@media (max-width: 991px) {
  .legal-hero-section {
    padding:150px 0 55px;
  }
  .legal-content-layout {
    grid-template-columns:1fr;
  }
  .legal-sidebar {
    position:relative;
    top:auto;
  }
  .legal-footer-grid {
    grid-template-columns:1fr;
  }
}
@media (max-width: 575px) {
  .legal-hero-card,
  .legal-article {
    padding:30px 24px;
  }
  .legal-meta-row span {
    width:100%;
  }
}
/* --- END LEGAL PAGES --- */
