@font-face {
    font-family: CenturyGothic-Regular;
    src: url('../fonts/CenturyGothic-Regular.ttf');
}

@font-face {
    font-family: CenturyGothic-Bold;
    src: url('../fonts/CenturyGothic-Bold.TTF');
}

:root {
    --theme-color-1: #05a37f;
    --theme-color-2: #efb500;
    --theme-color-3: #013d35;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #1f2324;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #d6c5e2;
    --bg-color2: #ede4da;
}


body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 30px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #623819;
}

.btn-secondary {
    color: var(--theme-color-1);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1);
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px;
    padding: 10px;
    color: #fff;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--theme-color-3);
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: auto;
    flex-direction: column;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar .navbar-brand .logo-color{
    display: none;
}

.navbar .navbar-brand .logo-white{
    display: block;
}

.navbar.fixed-top .navbar-brand .logo-color{
    display: block;
}

.navbar.fixed-top .navbar-brand .logo-white{
    display: none;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black) !important;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1) !important;
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: transparent;
    padding: 12px 0px;
    width: 100%;
    border-bottom: 1px dashed #464646;
    margin-bottom: 15px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--font-white);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-white);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.fixed-top .topbar-contact-wrapper ul li a{
    color: var(--font-black);
}

.navbar.fixed-top .topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
}

.navbar.fixed-top .topbar-social li a{
    color: var(--theme-color-1)
}

.navbar-brand img{
    width: 180px;
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    z-index: 11;
}

.section-heading{
    font-size: 32px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-heading span{
    color: var(--theme-color-1);
}

.section-description{
    font-family: 'CenturyGothic-Regular', sans-serif;
    color: var(--font-black);
    text-align: center;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
}

.banner-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 9;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-description{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 0px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-btns{
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 2rem;
}


footer{
    background-color: #051311;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 7rem 0 0rem 0;
    z-index: 10;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about img{
    width: 180px;
}

.footer-about p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-about p:last-child{
    margin-top: 2rem;
}

.footer-quick-links{
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-quick-links ul li{
    margin-bottom: 10px;
}

.footer-quick-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-quick-links ul li a{
    color: var(--font-white);
}

.footer-quick-links ul li a::before{
    width: 5px;
    height: 5px;
    background-color: var(--font-white);
    border-radius: 50%;
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
}

.footer-follow ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-follow ul li a{
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--font-white);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-contact{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-contact-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item span{
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 15px;
    background-color: var(--font-white);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-contact-item a{
    width: auto;
    display: inline-block;
    color: var(--font-white);
}

.footer-bottom-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-top: 1px solid #dddddd;
}

.footer-bottom-wrapper p{
    color: var(--font-white)
}

.footer-layer-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--theme-color-3);
    border-radius: 12px;
}

.footer-layer-content{
    flex: 50% 0;
    padding: 20px;
}

.footer-layer-image{
    flex: 50% 0;
}

.footer-layer-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer-layer{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 200px;
    z-index: 11;
    margin-bottom: -4.5rem;
}

.footer-layer-content h4{
    font-size: 16px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-layer-content h3{
    font-size: 28px;
    color: var(--font-white);
    margin-bottom: 18px;
}

.banner-layer-container{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-top: -6rem;
}

.banner-layer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem;
    background-color: var(--font-white);
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.checkings-list-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.checkings-list-item{
    text-align: center;
}

.checkings-img{
    width: 55px;
    margin: auto;
}

.checkings-heading{
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-top: 10px;
}

/* the slides */
.slick-slide {
    margin: 0 15px;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

.section{
    position: relative;
    padding: 60px 0px;
}

.bookAppointment-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    background-color: var(--font-white);
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    border: 1px solid #dddddd;
}

.bookAppointment-form-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.bookAppointment-form-heading h3{
    text-align: center;
    font-size: 24px;
}

.form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.form-label{
    width: 100%;
    position: relative;
    display: inline-block;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.form-label span{
    color: #ff0000;
}

.form-input{
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--bg-color2);
    min-height: 48px;
    background-color: var(--bg-color2);
    width: 100%;
    position: relative;
    display: inline-block;
}

.bookAppointment-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.bookAppointment-image-wrapper img{
    width: 100%;
    height: 575px;
    object-fit: cover;
}

.ourteam{
    background-color: var(--bg-color2);
}

.team-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 20px 20px 20px;
    background-color: var(--font-white);
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
    margin-top: 5rem;
}

.team-img{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.team-img img{
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info{
    width: 100%;
    position: relative;
    margin-top: 5rem;
    display: inline-block;
}

.team-info h3{
    text-align: center;
    font-size: 18px;
}

.team-info h4{
    text-align: center;
    color: var(--theme-color-2);
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 5px;
}

.team-info p{
    text-align: center;
}

.mt-4rem{
    margin-top: 4rem;
}

.weoffer{
    background-color: var(--bg-color2);
}

.weoffer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 270px;
}

.weoffer-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.weoffer-badge{
    width: 80%;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 15px;
    height: 55px;
    background-color: var(--theme-color-3);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    justify-content: space-between;
}

.weoffer-badge h3{
    font-size: 14px;
    color: var(--font-white);
}

.weoffer-badge span{
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    margin-left: 15px;
}

.divider-banner{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem 0rem;
}

.divider-banner::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 42%;
    background-color: var(--theme-color-1);
    z-index: 10;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.dividrbanner-wrapper{
    width: 100%;
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.dividrbanner{
    width: 100%;
    position: relative;
    display: flex;
    z-index: 11;
    height: 100%;
    align-items: center;
}

.funfactor-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    z-index: 11;
}

.funfactor-wrapper img{
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funfactor-wrapper h3{
    text-align: center;
    font-size: 32px;
    margin: 10px 0px;
}

.funfactor-wrapper p{
    text-align: center;
    text-transform: uppercase;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.funfactor::after{
    position: absolute;
    width: 100%;
    height: 180px;
    background-color: var(--theme-color-3);
    z-index: 10;
    content: '';
    left: 0;
    bottom: 0;
}

.testimonial-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    margin: 10px 0px;
}

.testimonial-stars i{
    margin-right: 5px;
    font-size: 16px;
}

.testimonial-stars i.earned{
    color: #efb500;
}

.testimonial-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 15px 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-color1);
    padding-right: 2rem;
}

.testimonial-bottom{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.testimonial-bottom img{
    width: 40px;
    min-width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-bottom h3{
    font-size: 14px;
    color: var(--heading-color);
}

.testiQuote{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    color: var(--font-white);
    font-size: 16px;
    position: absolute;
    right: 0;
    top: -38px;
}

.testimonial-wrapper .slick-dots{
    bottom: -35px;
}

.slick-dots li button:before{
    font-size: 10px;
}

.slick-dots li.slick-active button:before{
    color: var(--theme-color-1);
}

.blog-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    border: 1px solid var(--heading-color);
    padding: 20px;
    margin-top: 24px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.blog-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-heading h3{
    font-size: 16px;
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: -45px;
}

.blog-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-date{
    padding: 5px;
    background-color: var(--font-white);
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 6px;
}

.whyus-img-wrapper{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.whyus-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* === Casino Overview Section (Light Version) === */
.casino-overview {
    background: #ffffff;
    padding: 80px 0;
    color: #1f2324;
}

.casino-overview .section-heading {
    color: #1f2324;
}

.casino-overview .section-heading span {
    color: #efb500;
}

.casino-overview .section-description {
    color: #646464;
    max-width: 850px;
    margin: 0 auto;
}

.casino-overview p {
    color: #3a3a3a;
    line-height: 1.7;
    font-size: 15px;
}

.casino-overview h4 {
    color: #013d35;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* lists */
.casino-overview ul {
    margin-top: 15px;
    padding-left: 0;
}

.casino-overview ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #1f2324;
    font-size: 14px;
}

.casino-overview ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #efb500;
    font-weight: bold;
}

/* columns */
.casino-overview .col-md-6 {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e5e5;
}

/* badges */
.casino-overview .badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-top: 10px;
    font-weight: bold;
}

.casino-overview .bg-success {
    background: #00c389 !important;
    color: #ffffff;
}

.casino-overview .bg-warning {
    background: #efb500 !important;
    color: #000000;
}

.casino-overview .bg-primary {
    background: #2e7dab !important;
    color: #ffffff;
}

.casino-overview .bg-dark {
    background: #111111 !important;
    color: #ffffff;
}

/* intro paragraph */
.casino-overview .row.mb-4 p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: #1f2324;
}

/* === Fixed size for Online Casino Stats cards === */
.funfactor-wrapper {
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* fixed icon box */
.funfactor-wrapper img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* numbers */
.funfactor-wrapper h3 {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* labels */
.funfactor-wrapper p {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Top Games Grid === */
.top-games-grid {
    margin-top: 40px;
}

.game-card {
    position: relative;
    width: 100%;
    height: 260px;
    background: #0b1f1c;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Overlay */
.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,19,17,0.3) 0%, rgba(5,19,17,0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* Button */
.game-btn {
    background: linear-gradient(135deg, #efb500, #ffcf40);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(239,181,0,0.7);
    transition: 0.3s ease;
}

.game-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(239,181,0,1);
}

/* Responsive */
@media (max-width: 991px) {
    .game-card {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .game-card {
        height: 190px;
    }
}

/* === Loyalty & Bonuses === */
.loyalty-section {
    background: #ffffff;
    padding: 80px 0;
}

.loyalty-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #333;
}

.loyalty-tags {
    text-align: center;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    margin: 5px;
}

.tag-gold { background: #efb500; color: #000; }
.tag-dark { background: #111; color: #fff; }
.tag-green { background: #00c389; color: #fff; }

.loyalty-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.loyalty-box.featured {
    border: 2px solid #efb500;
    box-shadow: 0 10px 40px rgba(239,181,0,0.15);
}

.loyalty-box ul {
    margin-top: 15px;
    padding-left: 0;
}

.loyalty-box ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.loyalty-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #efb500;
}

/* Welcome Bonus */
.welcome-bonus {
    background: linear-gradient(135deg, #efb500, #ffd85e);
    color: #000;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.welcome-bonus .ribbon {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}

.welcome-bonus h5 {
    font-size: 20px;
    margin-bottom: 5px;
}

.crab {
    font-weight: bold;
}

/* Promotions */
.promo-title {
    margin-bottom: 20px;
    text-align: center;
    color: #013d35;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.promo-card {
    background: #0b1f1c;
    color: #fff;
    padding: 20px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-card p {
    margin-bottom: 5px;
}

.promo-card strong {
    color: #efb500;
}

.promo-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #efb500;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

/* === Welcome Bonus Banner === */
.welcome-banner {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 80px 0;
}

.welcome-content {
    max-width: 600px;
}

.welcome-tag {
    display: inline-block;
    background: #efb500;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.welcome-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.welcome-content h2 span {
    color: #efb500;
}

.bonus-crab {
    font-size: 18px;
    font-weight: bold;
    color: #013d35;
    margin-bottom: 15px;
}

.welcome-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.welcome-image {
    text-align: center;
}

.welcome-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

/* subtle float animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Mobile */
@media (max-width: 768px) {
    .welcome-content h2 {
        font-size: 30px;
    }
}

/* === Gaming Options Section === */
.gaming-section { background: #ffffff; padding: 80px 0; }

.gaming-intro {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

.gaming-tags { margin-top: 16px; text-align: center; }
.gaming-tags .tag { display:inline-block; padding:8px 16px; border-radius:30px; font-size:12px; font-weight:700; margin:5px; }
.tag-gold { background:#efb500; color:#000; }
.tag-dark { background:#111; color:#fff; }
.tag-green { background:#00c389; color:#fff; }
.tag-blue { background:#2e7dab; color:#fff; }

.gaming-box {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 28px;
    height: 100%;
}

.gaming-box.featured {
    border: 2px solid rgba(239,181,0,0.75);
    box-shadow: 0 12px 40px rgba(239,181,0,0.12);
    background: #ffffff;
}

.gaming-box-head {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.gaming-box h4 { margin: 0; color:#013d35; text-transform: uppercase; letter-spacing: 1px; font-size: 20px; }
.gaming-lead { color:#444; line-height:1.7; margin: 10px 0 18px; }

.badges .badge { margin-left: 6px; border-radius: 20px; padding: 8px 14px; font-size: 12px; font-weight: 700; display:inline-block; }
.bg-warning { background:#efb500 !important; color:#000 !important; }
.bg-dark { background:#111 !important; color:#fff !important; }
.bg-primary { background:#2e7dab !important; color:#fff !important; }
.bg-success { background:#00c389 !important; color:#fff !important; }

.gaming-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0 18px;
}

.stat {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.stat-num { font-size: 26px; color:#111; font-family: 'CenturyGothic-Bold', sans-serif; }
.stat-label { font-size: 12px; color:#666; margin-top: 4px; }

.gaming-list h5 {
    margin: 0 0 10px;
    color: #111;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gaming-list ul { padding-left: 0; margin: 0; }
.gaming-list ul li {
    list-style: none;
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.6;
}
.gaming-list ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #efb500;
    font-weight: 700;
}

.gaming-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0 18px;
}

.mini-card {
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 14px;
}

.mini-card h6 { margin: 6px 0 6px; color:#111; font-size: 14px; }
.mini-card p { margin: 0; color:#555; line-height: 1.6; font-size: 13px; }

.mini-tag {
    display:inline-block;
    background: #efb500;
    color:#000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.gaming-note {
    margin-top: 16px;
    background: #ffffff;
    border: 1px dashed #d9d9d9;
    border-radius: 12px;
    padding: 14px;
    display:flex;
    gap: 12px;
    align-items:flex-start;
}

.gaming-note.soft { background:#f9f9f9; }

.note-chip {
    display:inline-block;
    padding: 6px 10px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 800;
    background:#efb500;
    color:#000;
    white-space: nowrap;
}

.note-chip.dark { background:#111; color:#fff; }

.gaming-note p { margin: 0; color:#333; line-height: 1.6; font-size: 13px; }

.gaming-footer {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .gaming-stats { grid-template-columns: 1fr 1fr; }
    .gaming-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
    .gaming-stats { grid-template-columns: 1fr; }
    .gaming-cards { grid-template-columns: 1fr; }
}

/* === Online Slots Section === */
.slots-section {
    background: #ffffff;
    padding: 80px 0;
}

.slots-intro {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #333;
}

.slots-tags {
    text-align: center;
}

.slots-tags .tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    margin: 5px;
}

.slots-box {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    height: 100%;
}

.slots-box.featured {
    border: 2px solid #efb500;
    box-shadow: 0 10px 40px rgba(239,181,0,0.15);
    background: #ffffff;
}

.slots-box h4 {
    color: #013d35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slots-box ul {
    padding-left: 0;
}

.slots-box ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.slots-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #efb500;
    font-weight: bold;
}

.slots-note {
    margin-top: 20px;
    background: #ffffff;
    border: 1px dashed #e0e0e0;
    border-radius: 12px;
    padding: 15px;
}

.slots-highlight {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #efb500, #ffd85e);
    border-radius: 12px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

/* === Table Games & Live Casino === */
.table-live-section { background: #ffffff; padding: 80px 0; }

.table-live-intro {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #333;
}

.table-live-tags { text-align: center; }

.table-box {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    height: 100%;
}

.table-box.featured {
    border: 2px solid #efb500;
    box-shadow: 0 10px 40px rgba(239,181,0,0.15);
    background: #ffffff;
}

.table-box h4 {
    color: #013d35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-box ul {
    padding-left: 0;
}

.table-box ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.table-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #efb500;
    font-weight: bold;
}

.table-note, .table-highlight {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px dashed #e0e0e0;
}

/* === Login & Registration === */
.login-section {
    background: #ffffff;
    padding: 80px 0;
}

.login-box {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    height: 100%;
}

.login-box.featured {
    border: 2px solid #efb500;
    box-shadow: 0 10px 40px rgba(239,181,0,0.15);
    background: #ffffff;
}

.login-box h4 {
    color: #013d35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-steps {
    padding-left: 20px;
    margin: 15px 0;
}

.login-steps li {
    margin-bottom: 10px;
    color: #333;
}

.login-box ul {
    padding-left: 0;
}

.login-box ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.login-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #efb500;
    font-weight: bold;
}

.login-note {
    margin-top: 20px;
    background: #ffffff;
    border: 1px dashed #e0e0e0;
    border-radius: 12px;
    padding: 15px;
}

.login-note.soft {
    background: #f9f9f9;
}

/* === Casino App Section === */
.app-section {
    background: #ffffff;
    padding: 80px 0;
}

.app-box {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    height: 100%;
}

.app-box.featured {
    border: 2px solid #efb500;
    box-shadow: 0 10px 40px rgba(239,181,0,0.15);
    background: #ffffff;
}

.app-image {
    width: 50%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.app-image-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.store-buttons img {
    height: 50px;
    cursor: pointer;
}

.app-features {
    padding-left: 0;
    margin-bottom: 20px;
}

.app-features li {
    list-style: none;
    margin-bottom: 10px;
    color: #222;
}

.install-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.install-steps div {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

/* Center the Casino App image */
.app-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* === Payment Methods === */
.payment-section {
    background: #ffffff;
    padding: 80px 0;
}

.payment-intro {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    color: #333;
}

.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-tab {
    padding: 10px 26px;
    border-radius: 30px;
    border: 2px solid #efb500;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.payment-tab.active {
    background: #efb500;
}

.payment-tables {
    max-width: 900px;
    margin: 0 auto;
}

.payment-table {
    display: none;
}

.payment-table.active {
    display: block;
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.payment-table th,
.payment-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.payment-table th {
    background: #efb500;
    color: #000;
}

.payment-info {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    color: #444;
}

@media (max-width: 768px) {
    .payment-table th,
    .payment-table td {
        font-size: 13px;
        padding: 10px;
    }
}

/* === Trust Section === */
.trust-section {
    background: #ffffff;
    padding: 80px 0;
}

.trust-box {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    height: 100%;
}

.trust-box.featured {
    border: 2px solid #efb500;
    box-shadow: 0 10px 40px rgba(239,181,0,0.15);
    background: #ffffff;
}

.trust-box h4 {
    margin-bottom: 15px;
    font-weight: bold;
    color: #013d35;
}

.trust-box i {
    color: #efb500;
    margin-right: 8px;
}

.trust-box ul {
    padding-left: 0;
}

.trust-box ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.trust-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #efb500;
    font-weight: bold;
}

/* === FAQ === */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.faq-title {
    margin-bottom: 20px;
    color: #013d35;
    font-weight: bold;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: none;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: #efb500;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #ffffff;
    color: #444;
}

.faq-item.active .faq-answer {
    display: block;
}

/* === Fixed size testimonial cards === */
.testimonial-card {
    height: 280px;                 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    flex-grow: 1;
    overflow: hidden;
}

.testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 5;         
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.casino-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.7;
    font-size: 14px;
}

.footer-trust span {
    display: inline-block;
    background: #111;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 5px 5px 0 0;
    font-size: 12px;
    color: #efb500;
}

.footer-heading {
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.casino-footer ul {
    padding-left: 0;
}

.casino-footer ul li {
    list-style: none;
    margin-bottom: 8px;
}

.casino-footer ul li a {
    color: #ccc;
    text-decoration: none;
}

.casino-footer ul li a:hover {
    color: #efb500;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
    text-align: center;
    color: #777;
}

/* Fix footer layer overlap */
.footer-layer {
    position: relative;
    z-index: 5;
    margin-bottom: 80px;   
}

.casino-footer {
    position: relative;
    z-index: 1;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

header, #navbar_top {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

#navbar_top .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.navbar-brand img {
    max-height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 36px;
    }
}
