
    @import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
      --gold: #eac94a;
      --bg: #000000;
      --stroke: 1px;
      --gap: 6px;
      --margin: 12px;
      --trim: 16px;
      --mediaInsetX: 12%;
      --mediaInsetY: 10.5%;
    }

    @media (min-width: 992px) {
      :root {
        --stroke: 1px;
        --gap: 8px;
        --margin: 16px;
        --trim: 20px;
        --mediaInsetX: 11%;
        --mediaInsetY: 10%;
      }
    }
   
   

.game-card {
  display: block;
  width: 100%;
  aspect-ratio: 13 / 15;
  position: relative;
  background: transparent;
  text-decoration: none;
  color: white;
  overflow: hidden;
}

/* Frame and media */
.frame {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.media {
  position: absolute;
  top: var(--mediaInsetY);
  right: var(--mediaInsetX);
  bottom: var(--mediaInsetY);
  left: var(--mediaInsetX);
  overflow: hidden;
  z-index: 1;
  border-radius: 12px;
  background: #1a1a1a;
}
.media img {
  width: 100%;
  height: 100% !important ;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* Initially invisible */
  transition: background 0.3s ease;
  z-index: 1;
}

/* Play button circle */
.media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) scale(0.8);
  border-radius: 50%;
  background: linear-gradient(#000000, #000000) padding-box,
              linear-gradient(90deg, #D3AF37, #FFF788, #D3AF37) border-box;
  border: 3px solid transparent;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Play triangle icon inside the button */
.media::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media::after {
  content: "\25B6"; /* Play symbol */
  font-size: 18px;
  color: #FFD84D;
  text-align: center;
}

/* Hover Effects */
.game-card:hover .media img {
  transform: scale(1.08);
}

.game-card:hover .media::before {
  background: rgba(255, 247, 136, 0.64);
}

.game-card:hover .media::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Existing styles remain same */
.clip {
  appearance: none;
  position: relative;
  display: inline-block;
  min-width: 2.598rem;
  height: 2rem;
  padding: 0 0.5rem;
  margin: 0px;
  line-height: 1.8rem;
  vertical-align: middle;
  color: #ffff;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  background-color: rgba(0, 0, 0, .25);
  clip-path: polygon(0.866rem 0, calc(100% - 0.866rem) 0, 100% 50%, calc(100% - 0.866rem) 100%, 0.866rem 100%, 0 50%);
}

.clip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #eac94a;
  z-index: -1;
  clip-path: polygon(0 50%, 2px 50%, calc(0.866rem + 1px) 2px, calc(100% - 0.866rem - 1px) 2px, calc(100% - 2px) 50%, calc(100% - 0.866rem - 1px) calc(100% - 2px), calc(0.866rem + 1px) calc(100% - 2px), 2px 50%, 0 50%, 0 100%, 100% 100%, 100% 50%, 100% 0, 0 0);
}

.clip:hover {
  color: #000000;
  background: linear-gradient(90deg, #D3AF37 0%, #FFF788 48.56%, #D3AF37 99.04%);
}

.game-title {
  text-align: center;
  z-index: 3;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 10px;
}

.image-wrap,
.border-wrap {
  position: absolute;
  inset: 0;
}

.image-wrap {
  z-index: 1;
}

.border-wrap {
  z-index: 2;
}

.swiper {
  padding: 20px 10px 40px;
}

.swiper-slide {
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

.swiper-pagination-bullet {
  background-color: var(--gold);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}


    .section-title {
      text-align: center;
      margin-bottom: 30px;
      font-weight: 300;
      letter-spacing: 2px;
      color: var(--gold);
    }
/* Local font */
@font-face {
  font-family: "Airstrike";
  src: url("../fonts/airstrike.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Utility to apply local font when needed */
.font-airstrike {
  font-family: "Airstrike", sans-serif;
}

body {
  font-family: " Alatsi", sans-serif;
  box-sizing: border-box;
  background-color: #000000;
  background-size: contain;
}

/* Global select styling: dark dropdown and options */
select,
.form-select {
  background-color: transparent;
  color: #ffffff;
}

/* Ensure the dropdown list itself is dark across browsers */
select option,
.form-select option,
.form-select optgroup {
  background-color: #000;
  color: #ffffff;
}

.form-select :hover{
  background-color: #D3AF37 !important;
}

.draw-btn{
  color: #FCB000 !important;
}

/* Selected/hovered option color in dropdown */
select option:checked,
.form-select option:checked,
select option:hover,
.form-select option:hover {
  background-color: #D3AF37;
  color: #ffffff;
}

/* Sub-navbar */
.sub-navbar {
  border-bottom: 1px solid var(--Gradient-01, #D3AF37);
 backdrop-filter: blur(2px);
  border-top: 1px solid var(--Gradient-01, #D3AF37);
  position: relative;
  z-index: 100;
}

.subnav-icon img {
  max-width: 40px;
}

.ticker-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ticker marquee */
.sub-navbar .ticker-viewport {
  flex: 0 0 55%;
  max-width: 55%;
  overflow: hidden;
  text-align: center;
}

.sub-navbar .ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.sub-navbar .ticker-track:hover {
  animation-play-state: paused;
}

.sub-navbar .ticker-text {
  display: inline-block;
  margin-right: 3rem;
}
@media (max-width: 991.98px) {
  .sub-navbar .ticker-viewport {
    flex: 1 1 auto;
    max-width: 100%;
  }
}

/* Ensure 100% width at <=768px */
@media (max-width: 768px) {
  .sub-navbar .ticker-viewport {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.date-badge {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.25rem 0.5rem;
  display: inline-block;
}

/* Make the vertical rule subtle on dark */
.sub-navbar .vr {
  opacity: 1;
  background-color: #ff0037;
}

/* Navbar base */
.navbar-dark {
  background-color: transparent;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar .nav-link:hover {
  color: #ffffff;
}

.navbar-brand img {
  max-width: 130px;
}

.navbar-actions {
  gap: 15px;
}

.navbar-toggler {
  padding: 0;
}

/* Custom hamburger button (mobile) */
.hamburger-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hamburger-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mbl-icon{
margin-left:20px;
}

.mobile-icon{
justify-content: center;
}

/* Offcanvas APK banner */
.apk-banner-link {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-align: center;
  box-shadow: 0 4.362px 4.362px 0 rgba(0, 0, 0, 0.25);
}

.apk-banner-img {
  max-width: 300px;
  width: 100%;
  height: 165px;
  margin: auto !important;
}

/* Buttons */
.btn-gold {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000;
  box-shadow: inset 0 -5px 0 #876800, 2px 3px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
}

.btn-gold:hover {
  transform: scale(1.05);
}

.btn-icon {
  background: #000;
  border-radius: 50%;
  margin: 2px;
  padding: 8px;
  display: flex;
  align-items: start;
  justify-content: start;
   margin-left: -5px;
}

.btn-icon img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-text {
  color: #000;
}

.btn-red:hover,
.btn-red:focus {
  background-color: #e00031;
  color: #ffffff;
}

.btn-blue:hover,
.btn-blue:focus {
  background-color: #3e92ff;
  color: #ffffff;
}

/* Sidebar action buttons */
.btn-telegram,
.btn-whatsapp,
.btn-logout-sky {
  color: #ffffff;
  border: none;
  max-width: none;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-telegram {
 background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: black;
}
.btn-telegram:hover {
   color: #0000005c;
}




.btn-whatsapp {
   background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
color: black;
}
.btn-whatsapp:hover{
   color: #0000005c;
  text-decoration: none;
}

.btn-close{
 border: 1px solid;
    border-radius: 5px;
    width:15px;
    height: 15px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E9CD52;
    opacity: 1;
    background-size: 12px;
    transition: background-color .15s ease-in-out, filter .15s ease-in-
}

.btn-logout-sky {
  background-color: #51a2ff; /* site sky blue */
}
.btn-logout-sky:hover,
.btn-logout-sky:focus {
  background-color: #3e92ff;
  color: #ffffff;
  text-decoration: none;
}

/* Sidebar Slot/Casino buttons */
.btn-slot,
.btn-casino {
  color: #ffffff;
  border: none;
  max-width: none;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-slot {
  background-color: #ff0037;
}
.btn-slot:hover,
.btn-slot:focus {
  background-color: #e00031;
  color: #ffffff;
  text-decoration: none;
}

.btn-casino {
  background-color: #3e92ff;
}
.btn-casino:hover,
.btn-casino:focus {
  background-color: #2e82f0;
  color: #ffffff;
  text-decoration: none;
}

/* Offcanvas from right */
.offcanvas-end {
  width: 280px;
  background-color: #0b0d0f;
  color: #ffffff;
  background-image: url("../images/banners/sidebar-bg-banner.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.offcanvas .nav-link:hover {
  color: #ffffff;
}

/* Offcanvas menu list styling */
.offcanvas-menu li + li {
  border-top: 1px solid #e1c959;
}

.offcanvas-menu .icon-square {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
  padding: 20px;
}

/* Dropdown menu appearance */
.dropdown-menu,
.dropdown-menu-dark {
  background-color: #000000;
  border: 2px solid #e1c959;
  border-radius: 10px;
}

/* Divider between items */
.dropdown-menu > li {
  border-bottom: 1px solid #e1c959;
}

.mbl-icon{
margin-left :20px;
}

.dropdown-menu > li:last-child {
  border-bottom: none;
}

/* Dropdown item default */
.dropdown-menu .dropdown-item,
.dropdown-menu-dark .dropdown-item {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}



/* Flag size (optional, for alignment like image) */
.dropdown-menu .dropdown-item img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
}

/* Hover / Active / Focus state */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000000;
}

/* Language switcher flag sizing */
.js-lang-btn [data-role="flag"] img {
  width: 18px;
  height: 12px;
  display: inline-block;
  object-fit: cover;
}

.js-lang-btn .lang-short {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.dropdown-toggle::after {
  color: #e1c959;
}

/* Flags inside language dropdown items */
.dropdown-menu .lang-flag,
.dropdown-menu-dark .lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  margin-right: 8px;
  vertical-align: -2px;
}

/* Icon square buttons */
.icon-square {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #000;
  transition: all 0.3s ease;
  box-sizing: border-box;
  flex: 0 0 40px;
  padding: 0;
}

.icon-square img {
  max-width: 22px;
}

/* ✨ Simple hover border with radius */
.icon-square:hover {
  border: 2px solid #ffd700;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 10px #ffd700aa;
}

.divider {
  height: 25px;
  width: 1px;
  background: #69571C;
}

/* Ensure fixed button widths in desktop navbar, while allowing full width in offcanvas */
.navbar-actions .btn-red,
.navbar-actions .btn-blue {
  width: 120px;
  flex: 0 0 120px;
}

/* Make language dropdown match date badge border */
.js-lang-btn {
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #d3af37, #fff788, #d3af37) border-box;
    width: 100px;
    justify-content: center;
    height: 31px;
}

/* User .hero-title.hero-titlection pills (wallet and profile) */
.user-pill {
  border: 1px solid #d3af37 !important;
  border-radius: 12px !important;
  height: 50px;
  color: #cfd8df !important;
  background: transparent !important;
}
.user-pill:hover {
  border: 1px solid #d4b037 !important;
}
.user-pill-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.user-avatar img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
}

/* Initial-based avatar */
.user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
   background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000;
  box-shadow: inset 0 -3px 0 #876800, 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.user-avatar-initial {
  color: black;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

/* Dropdown list items look like in screenshots */
.user-dd .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
}

.menu-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Mobile tweaks */

/* Category strip */
.category-strip {
  border-top: 1px solid #D9B942;
  border-bottom: 1px solid #D9B942;
  background: #0C0C0C;
  backdrop-filter: blur(2px);
}


.cat-cards{
width:140px;
position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: black;
  border-radius: 12px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  font-weight: 600;
}

.cat-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
   border: 1px solid #38331B;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.cat-cards img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  padding: 4px;
  background: 
    linear-gradient(#000, #000) padding-box,
    linear-gradient( #D3AF37, #FFF788, #D3AF37) border-box;
  border: 1px solid transparent;
}

/* Category card style */
.cat-card {
  width:150px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: black;
  border-radius: 12px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  font-weight: 600;
}

/* Gradient border */
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  border: 1px solid #38331B;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Card image */
.cat-card img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  padding: 4px;
  background: 
    linear-gradient(#000, #000) padding-box,
    linear-gradient( #D3AF37, #FFF788, #D3AF37) border-box;
  border: 1px solid transparent;
}

/* Title text */
.cat-title {
  color: #E8C957;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Inline layout for category-style buttons inside offcanvas */
.offcanvas-quick-links .d-flex {
  display: flex !important;
}

.offcanvas-quick-links .cat-card {
  flex: 1 1 0;
  max-width: 175px;
  left: 23px;
  right: 2px;
}

/* Jackpot category style */
.cat-jackpot {
  background: 
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #D3AF37, #FFF788, #D3AF37) border-box;
   border: 1px solid #38331B;;
  border-radius: 8px;
  color: #D9C07A;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.cat-jackpot .jackpot-value {
  font-size: 41px;
  font-weight: 800;
  background: linear-gradient(90deg, #DACE7C 0%, #BB8A2D 50%, #E9D481 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.cat-jackpot small {
  color: #DACE7C;
  font-weight: 700;
  align-self: flex-end;
  font-size: 16px;
}

/* Social links */
.cat-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 8px;
  padding: 5px 20px;
  color: #fff;
  text-decoration: none;
  min-width: 220px;
  justify-content: space-between;
  border: 1px solid #ffffff66;
}

.cat-social img {
  max-width: 35px;
}

.cat-social.wa {
  background: #19BFA5;
}

.cat-social.tg {
  background: #20A3DB;
}

.cat-social small {
  opacity: 0.9;
}


/* Homepage banner background */
.homepage-banner {
  background-image: linear-gradient(
      180deg,
      #000000 0%,
      #000000b2 50%,
      #000000 100%
    ),
    url("../images/banners/Home page.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Slot provider banner background */
.slot-provider-banner {
  background-image: linear-gradient(
      180deg,
      #000000 0%,
      #0000005c 50%,
      #000000 100%
    ),
    url("../images/banners/slot-slider.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Casino provider banner background */
.casino-provider-banner {
  background-image: linear-gradient(
      180deg,
      #000000 0%,
      #0000005c 50%,
      #000000 100%
    ),
    url("../images/banners/casino-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* =========================
   Hero Section
   ========================= */
.hero-section {
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-section .row {
  align-items: stretch !important;
}

.hero-section .col-md-6.text-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: auto;
}

.hero-section .col-md-6:not(.text-center) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: left;
  font-weight: 400;
  font-size: 50px;
  font-family: Alatsi;
  text-transform: uppercase;
  margin-bottom: 0px;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.first-title {
  margin: auto;
}

.hero-image {
  width: 85%;
  max-width: 850px;
  height: auto;
  margin-top: -23px;
}

.heros-image {
  position: absolute;
  bottom: -35px;
  left: -1px;
  max-width: 250px;
  overflow: hidden;
}

/* Hide on all screens below desktop size */
@media (max-width: 1199px) {
  .heros-image {
    display: none !important;
  }


  .hero-section {
    display: block;
    text-align: center;
  }

  .hero-section .row {
    display: flex;
    flex-direction: column;
  }

  /* Make sure text appears first (on top) */
  .hero-section .col-lg-6.text-center {
    order: 1 !important;
    width: 100%;
    padding: 20px 10px;
  }

  /* Image appears below text */
  .hero-section .col-lg-6:not(.text-center) {
    width: 100%;
    position: relative;
    top: 30px;
    left: auto;
    transform: none;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
  }

  .cta-clips {
    font-size: 12px;
    text-align: center;
  }
}

/* Girls */
.girl-img {
  height: 520px;
  width: auto;
  object-fit: contain;
}

.girl-left {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0px;
  left: 34px;
  z-index: 4;
  pointer-events: none;
}

/* Right Girl */
.girl-right {
  position: absolute;
  height: 100%;
  width: auto;
  top: 2px;
  right: 34px;
  z-index: 4;
  pointer-events: none;
}

.girl-left {
  margin-left: -40px; /* pushes to far left edge */
}

.girl-right {
  margin-right: -40px; /* pushes to far right edge */
}

/* Text Section */
.banner-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 1px;
}

.banner-sub {
  font-size: 18px;
  color: #e3b94f;
  letter-spacing: 2px;
  text-align: center;
}

/* Row and container full height */
.container-fluid,
.row {
  height: 100%;
}

/* ===== DESKTOP (unchanged) ===== */
.girl-img {
  height: 520px;
  width: auto;
  object-fit: contain;
}

.girl-left {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  left: 34px;
  z-index: 4;
  pointer-events: none;
  margin-left: -40px; /* pushes to far left edge */
}

.girl-right {
  position: absolute;
  height: 100%;
  width: auto;
  top: 2px;
  right: 34px;
  z-index: 4;
  pointer-events: none;
  margin-right: -40px; /* pushes to far right edge */
}

/* Text Section */
.banner-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 1px;
}

.banner-sub {
  font-size: 18px;
  color: #e3b94f;
  letter-spacing: 2px;
  text-align: center;
}

.container-fluid,
.row {
  height: 100%;
}

/* ===== PERFECT MOBILE VIEW ===== */
@media (max-width: 768px) {
  .casino-provider-banner {
    width: 100%;
    height: auto;
    background-image: linear-gradient(
        180deg,
        #000000 0%,
        #000000a0 50%,
        #000000 100%
      ),
      url("../images/banners/casino-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 20px 15px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Stack text on top */
  .casino-provider-banner .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start;
    text-align: center;
  }

  .banner-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 700;
  }

  .banner-sub {
    font-size: 13px;
    color: #e3b94f;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  /*  Wrap both girls side by side under the text */
  .girls-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    width: 100%;
    margin-top: 10px;
  }

  /*  Make girls visible and centered */
  .girl-left,
  .girl-right {
    position: static !important;
    margin: 0 !important;
    height: auto;
    width: 40%;
    max-width: 160px;
    pointer-events: none;
  }

  .girl-img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  /* Remove absolute positioning from desktop layout */
  .casino-provider-banner .col-lg-4,
  .casino-provider-banner .col-md-4,
  .casino-provider-banner .col-4 {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Add spacing below text */
  .casino-provider-banner .text-center {
    margin-bottom: 15px;
  }
}

/* Clipped gradient CTA */
.cta-clip {
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -10px;
}

.cta-clips {
  font-family: Alatsi;
  display: block;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
  margin-top: 7px;
}

/* Slot page CTA gradient override */
.slot-provider-banner .cta-clip {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.cta-clip:hover,
.cta-clip:focus {
  color: #ffffff;
  opacity: 0.95;
}

/* =========================
   Media Queries (consolidated)
   ========================= */

/* Responsive adjustments */
@media (max-width: 1500px) {
  .casino-provider-banner {
    width: 100%;
    max-width: 1507px;
  }
}

@media (max-width: 1200px) {
  .banner-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .banner-title {
    font-size: 36px;
  }
  .banner-sub {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 28px;
  }
  .banner-sub {
    font-size: 14px;
  }
  .girl-left,
  .girl-right {
    height: 80%;
  }
}



@media (max-width: 576px) {
  .banner-title {
    font-size: 22px;
  }
  .banner-sub {
    font-size: 12px;
  }
  .girl-left,
  .girl-right {
    height: 60%;
  }
}

@media (max-width: 992px) {
  /* Give announcement full width on mobile by hiding right controls */
  .sub-navbar .date-badge,
  .sub-navbar .dropdown {
    display: flex !important;
  }

  /* Hide category strip on <= 992px */
  .category-strip {
    display: none !important;
  }

  /* Hero adjustments at <= 992px */
  .hero-section {
    padding-top: 30px;
    min-height: auto;
  }

  .hero-title {
    font-size: 40px;
    text-align: center;
  }

  .cta-clip {
    font-size: 18px;
  }

  .cta-clips {
    font-size: 12px;
    text-align: center;
  }
}

/* Mobile (<=992px): make language switcher a 40x40 flag-only pill */
@media (max-width: 992px) {
  .js-lang-btn {
    width: 50px;
    height: 40px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    border-radius: 7px !important;
  }

  .js-lang-btn.dropdown-toggle::after {
    margin-left: 0 !important;
  }

  .js-lang-btn [data-role="short"] {
    display: none !important;
  }

  .js-lang-btn [data-role="flag"] img {
    width: 20px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .cta-clips {
    font-size: 12px;
    text-align: center;
  }

  /* Stack with text first so image stays at the bottom on mobile */
  .hero-section .row {
    min-height: 0;
    flex-direction: column;
    align-items: stretch !important;
  }

  .hero-section .col-md-6.text-center {
    order: 2;
  }
}

@media (max-width: 576px) {
  .cat-jackpot {
    min-width: 100%;
  }

  .cat-social {
    flex: 1 1 100%;
  }
}

/* Game Plays marquee */
.game-plays {
  display: flex;
  justify-content: center; /* center the inner row */
}

.game-plays-inner {
  border: 1.5px solid var(--Gradient-01, #D3AF37);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: #0b0d0f;
}



.gp-track {
  display: flex;
  gap: 12px;
  will-change: transform;
  --gp-card-width: 230px;
}

.gp-card {
  position: relative;
  display: flex;
  align-items: stretch;
  width: var(--gp-card-width);
  flex: 0 0 var(--gp-card-width);
  height: 78px;
  background: #0c0f13;
  border: none;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

.gp-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #e9d360;
}

.gp-media {
  flex: 0 0 80px;
  overflow: hidden;
}

.gp-thumb {
  width: 75px;
  height: 75px;
  object-fit: cover;
  display: block;
}

.gp-sep {
  display: none;
}

.gp-info {
  position: relative;
  flex: 1 1 auto;
  padding: 3px 12px 3px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.gp-user {
  font-size: 10px;
  color: #e3e7ec;
}

.gp-game {
  font-size: 10px;
  color: #b7c0ca;
}

.gp-badge {
  position: static;
  align-self: flex-start;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000000;
  border-radius: 30px;
  height: 28px;
  padding: 5px 10px 5px 10px;
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  margin-top: 6px;
  box-shadow: inset 0 -5px 0 #876800, 2px 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.gp-badge::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/gp-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
}

/* Game carousels (Swiper) */

.games-swiper .swiper-slide {
  height: auto;
}

/* Game section titles: 28px, bold, with leading icon */
.games-section h5 {
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.trending-wrapper {
  border: 1px solid #d4b037;
  border-radius: 6px;
  padding: 8px 15px;
}

.nav-btn {
  background: linear-gradient(90deg, #D3AF37 0%, #FFF788 48.56%, #D3AF37 99.04%);
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-btn i {
  color: #000; /* Black arrow icons */
  font-size: 14px;
  stroke-width: 2px;
stroke: #000;
}

.nav-btn:hover {
  opacity: 0.9;
}

.game-sections h5::before {
  content: "";
  width: 57px;
  height: 57px;
  position: absolute;
  padding: 8px;
  left: -7px;
  top: 35%;
  transform: translateY(-50%);
  background: url("../images/icons/cap.svg") center / contain no-repeat;
}

.game-sections h5 {
  position: relative;
    padding-left: 56px;
    font-size: 22px;
     padding-top: 4px;
    text-transform: capitalize;
    font-weight:400;
}

.game-section h4 {
  position: relative;
    padding-left: 56px;
    font-size: 22px;
     padding-top: 4px;
    text-transform: capitalize;
    font-weight:400;
}

.custom-box {
  background: #0d0d0d;
  border: 2px solid #c7a53f;
  border-radius: 8px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding-left: 55px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.game-section h4::before {
  content: "";
  width: 57px;
  height: 57px;
  position: absolute;
  padding: 8px;
  left: -7px;
  top: 35%;
  transform: translateY(-50%);
  background: url("../images/icons/cap.svg") center / contain no-repeat;
}

.games-sections h4::before {
  content: "";
  width: 57px;
  height: 57px;
  position: absolute;
  padding: 8px;
  left: -7px;
  top: 35%;
  transform: translateY(-50%);
  background: url("../images/icons/coin.svg") center / contain no-repeat;
}

.games-sections h4 {
    position: relative;
    padding-left: 56px;
    font-size: 22px;
    padding-top: 4px;
}


.games h5::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  padding: 8px;
  left: -7px;
  top: 15px;
  transform: translateY(-50%);
  background: url("../images/icons/trophy.svg") center / contain no-repeat;
}

.games h5 {
  position: relative;
    padding-left: 56px;
    font-size: 22px;
     padding-top: 4px;
    text-transform: capitalize;
    font-weight:400;
}

.sections h4::before {
  content: "";
  width: 57px;
  height: 57px;
  position: absolute;
  padding: 8px;
  left: -7px;
  top: 35%;
  transform: translateY(-50%);
  background: url("../images/icons/coins.svg") center / contain no-repeat;
}

.sections h4 {
  position: relative;
    padding-left: 56px;
    font-size: 22px;
     padding-top: 4px;
    text-transform: capitalize;
    font-weight:400;
}

.section h4::before {
  content: "";
  width: 57px;
  height: 57px;
  position: absolute;
  padding: 8px;
  left: -7px;
  top: 35%;
  transform: translateY(-50%);
  background: url("../images/icons/cap.svg") center / contain no-repeat;
}

.section h4 {
    position: relative;
    padding-left: 56px;
    font-size: 22px;
    padding-top: 4px;
    text-transform: capitalize;
    font-weight:400;
}

/* Spinner section */
.casino-banner {
  width: 100%;
  max-width: 1300px;
  margin: 80px auto;
  position: relative;
  aspect-ratio: 1221 / 475;
  border-radius: 18px;
  overflow: hidden;
  background: url("../images/banners/casino-background.webp") center/cover
    no-repeat;
}


/* ✨ Center Text */
.casino-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.casino-title {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #D3AF37 0%, #FFF788 50%, #D3AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.casino-sub {
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #D3AF37 0%, #FFF788 50%, #D3AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


@media (max-width: 968px) {
  .casino-banner {
    width: 88%; /* 🔥 slightly reduced width */
    margin: 25px auto;
    padding: 8px;
    overflow: visible;
  }

  .casino-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .casino-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .casino-sub {
    font-size: 21px;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }

}

/* 📱 Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .casino-banner {
    width: 88%; /* 🔥 slightly reduced width */
    margin: 25px auto;
    padding: 8px;
    overflow: visible;
  }

  .casino-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .casino-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .casino-sub {
    font-size: 13px;
    margin-top: 5px;
    letter-spacing: 1px;
  }

}


/* 📱 Extra Small Devices */
@media (max-width: 480px) {
  .casino-banner {
    width: 90%; /* 🔥 more compact look for tiny screens */
    margin-top: 35px;
    overflow: hidden;
  }

  .casino-title {
    font-size: 12px;
    margin-top: 15px;
  }

  .casino-sub {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

.load-btn {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000;
  box-shadow: inset 0 -5px 0 #876800, 2px 3px 6px rgba(0, 0, 0, 0.3);

  font-weight: 600;
  opacity: 1 !important;
  border: none !important;
}

.load-btn:hover {
  background-color: #d3af37;
}

@media (max-width: 992px) {
  .spinner-title {
    font-size: 28px;
  }

  .spinner-dragon {
    max-width: 380px;
  }
}

.game-card {
  gap: 8px;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  color: #fff;
position: relative; /* Required for ::before to position correctly */
  display: block;     /* So it can contain image and border layers */
  overflow: hidden;
}

.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.game-card span {
  font-size: 12px;
  color: #cfd8df;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-nav {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff788a3 !important;
  border-color: #fff788a3 !important;
  color: #ffffff !important;
}

.slider-nav:hover,
.slider-nav:focus,
.slider-nav:active {
  background-color: #fff788a3 !important;
  border-color: #fff788a3 !important;
  color: #ffffff !important;
}

/* Hover overlay + blue border + play button */
.game-card::before {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 220px;
  border-radius: 25px;
  background: rgba(240, 233, 132, 0.64); /* soft gold translucent overlay */
  backdrop-filter: blur(4px);             /* blur background content */
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;                             /* hidden by default */
  transition: opacity 0.2s ease;          /* fade in/out transition */
  pointer-events: none;                   /* doesn’t block clicks */
}



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

.game-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.03);
}

.game-card:hover img {
  box-shadow: 0 0 0 3px #fff893a3;
}

/* Smooth reveal for load-more */
.game-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.game-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   Payment methods section
   ======================= */

.crypto-bar {
  width: 85%; /* reduced width */
  max-width: 1300px;
  height: 100px;
  margin: 0 auto; /* centers it */
  background: #0b0b0b;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.crypto-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.crypto-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.crypto-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.crypto-icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1c1c1c;
  padding: 6px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  transition: transform 0.2s ease;
}

.crypto-icons img:hover {
  transform: scale(1.08);
}

.crypto-more {
  border: 1px solid #d3af37;
  background-color: #d3af3733;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  border: none;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.crypto-more:hover {
  background: linear-gradient(90deg, #fff788, #d3af37, #fff788);
}

.crypto-text {
  text-align: right;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}

.crypto-text p {
  margin: 0;
}

@media (max-width: 992px) {
  .crypto-bar {
    width: 95%;
    height: auto;
    padding: 20px;
  }

  .crypto-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .crypto-title {
    font-size: 22px;
  }

  .crypto-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .crypto-icons img {
    width: 36px;
    height: 36px;
  }

  .crypto-more {
    padding: 6px 16px;
    font-size: 13px;
    margin-top: 8px;
  }

  .crypto-text {
    text-align: center;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .crypto-title {
    font-size: 18px;
  }

  .crypto-icons img {
    width: 32px;
    height: 32px;
  }

  .crypto-more {
    font-size: 12px;
    padding: 5px 14px;
  }

  .crypto-text p {
    font-size: 11px;
  }
}

.bank-container {
  width: 85%; /* reduced width */
  max-width: 1300px;
  height: 100px;
  margin: 40px auto; /* centers it */
  background: #0b0b0b;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;

  box-sizing: border-box;
  padding: 10px 25px;
}

.bank-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0; /* prevent line break */
}

.bank-buttons {
  display: flex;
  align-items: center;
  gap: 15px; /* smaller gap for inline compact look */
}

.bank-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #d3af3733; /* gold with 20% opacity */
  color: #fff;
  border: 1px solid #d3af37;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.bank-btn:hover {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000;
}

.bank-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.bank-info {
  text-align: left;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  justify-content: center;
}

.bank-info p {
  margin: 0;
}

@media (max-width: 992px) {
  .bank-container {
    width: 95%;
    height: auto;
    padding: 20px;
    margin: 30px auto;
  }

  .bank-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .title {
    font-size: 24px;
  }

  .bank-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .bank-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .bank-btn img {
    width: 16px;
    height: 16px;
  }

  .bank-info {
    text-align: center;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 20px;
  }

  .bank-btn {
    font-size: 12px;
    padding: 7px 14px;
  }

  .bank-buttons {
    gap: 8px;
  }

  .bank-info p {
    font-size: 11px;
    line-height: 1.2;
  }
}

/* Main Footer Styles */
.main-footer {
  position: relative;
  padding: 3rem 0 2rem 0;
  overflow: hidden;
}

.footer-top {
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
}

.logo-art {
  color: #ff6b35;
  /* Orange color */
}

.logo-chip {
  color: white;
  position: relative;
}

.logo-icon {
  color: #ff6b35;
  font-size: 1rem;
  position: absolute;
  top: -0.3rem;
  left: 1.8rem;
}

.footer-description {
  color: #cfd8df;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  max-width: 350px;
}

.footer-heading {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #b4bbc5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  word-break: break-all;
}

.footer-link:hover {
  color: #ff6b35;
}

.footer-separator {
  height: 1px;
  background-color: #333;
  margin: 1.5rem 0;
  max-width: 77%;
}

.footer-middle {
  padding: 1.5rem 0;
  max-width: 77%;
}

.casino-description-box {
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 27px;
  padding: 10px;
}

.footer-bottom {
  max-width: 77%;
  justify-content: center;
}

.casino-description {
  color: #cfd8df;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.footer-floating-img {
  position: absolute;
  bottom: 0;
  right: 40px;
}

.footer-floating-img img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .footer-floating-img {
    right: 10px;
  }
  .footer-floating-img img {
    max-width: 180px;
  }
}

.copyright {
  color: #cfd8df;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  justify-content: center;
}

.copyright-text {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-media {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Right End Image */
.footer-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer-girl-img {
  max-width: 360px;
  height: auto;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 1.5rem 0;
  }

  .footer-top {
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .footer-heading {
    text-align: center;
    margin-top: 20px;
  }

  .footer-links {
    text-align: center;
  }

  /* Casino Description Box — slightly to right */
  .casino-description-box {
    margin: 0 auto !important;
    text-align: center !important;
    width: 90% !important;
    display: block;
    position: relative;
    left: 46px;
  }

  .casino-description {
    text-align: center !important;
  }

  /* Footer Bottom Center */
  .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
    margin-top: 1.5rem;
  }

  .footer-bottom .row {
    justify-content: center !important;
    text-align: center !important;
  }

  .social-media {
    justify-content: center !important;
    margin-top: 1rem;
  }

  .copyright {
    text-align: center !important;
    margin-top: 0.5rem;
    margin-left: 71px;
  }

  /* Hide floating image on mobile */
  .footer-floating-img {
    display: none !important;
  }
}

.cta-clip {
  font-size: 14px;
  letter-spacing: 2px;
}

.slot-provider-banner .cta-clip {
  font-size: 14px;
  letter-spacing: 2px;
}

.games-section h5 {
  font-size: 18px;
}

.slider-nav {
  width: 25px;
  height: 25px;
}
.spinner-dragon {
  max-width: 100%;
}


.col {
  max-width: none;
  margin: 0;
  padding: 8px;
}

/* Card: fixed uniform size */
.sp-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 200px;
  display: flex;
  justify-content: end;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Image stays behind */
.sp-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
  z-index: 0;
}

.sp-play-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #d4af37;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sp-button:hover {
  transform: scale(1.05);
}



/*  Golden overlay on hover */
.sp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.75); /* gold overlay */
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

/*  Centered "PLAY" button */
.sp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-card:hover .sp-overlay {
  opacity: 1;
}

/*  Button style (same as image) */
.sp-button {
  background-color: #000;
  color: #fff;
  border: 2px solid #d4af37;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sp-button:hover {
  transform: scale(1.05);
}


.image-wraper {
  position: relative;
  overflow: hidden;          
  border-radius: 25px;       
  width: 100%;
  height: auto;
}

/*  Title inside image */
.sp-title {
  position: absolute;
  right: 3px;
  bottom: 3px;
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(90deg, #d4af37 0%, #fce97f 50%, #d4af37 100%);
  color: #000;
  text-transform: uppercase;
  text-align: center;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 7px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  letter-spacing: 0.8px;
  opacity: 0.95;
  z-index: 0;
  font-size: clamp(10px, 1.5vw, 15px); 
  max-width: 85%;                      
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-title {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .sp-title {
    display: inline-block !important;
  }
}

@media (max-width: 768px) {
  .sp-title {
    right: 5px;
    bottom: 6px;
    padding: 5px 10px;
    font-size: clamp(9px, 2vw, 13px);
  }
}

/* 📱 Adjust for small mobile screens */
@media (max-width: 480px) {
  .sp-title {
    right: 4px;
    bottom: 5px;
    padding: 4px 8px;
    font-size: clamp(8px, 2.5vw, 12px);
    max-width: 80%;
  }
}

/* Hover overlay effect */
.sp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 233, 115, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  border-radius: 16px;
}

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

.sp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.sp-card:hover .sp-overlay {
  opacity: 1;
  pointer-events: auto;
}

.sp-overlay h3 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sp-overlay p {
  color: #000;
  font-size: 16px;
  max-width: 80%;
  text-align: center;
  font-weight: 500;
}

.sp-button {
  background-color: #000;
  color: #fff;
  border: 1px solid #d4af37;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.sp-logo {
  width: 70px !important;
}

.sp-button:hover {
  transform: translateY(-2px);
}

/* ---------------------------------------------------------- */
/* ✅ RESPONSIVE ADJUSTMENTS — no design changes */
/* ---------------------------------------------------------- */

/* Medium devices (tablets) */
@media (max-width: 992px) {
  .sp-card {
    height: 180px;
  }
  .sp-overlay h3 {
    font-size: 20px;
  }
  .sp-overlay p {
    font-size: 14px;
  }
}

/* Small devices (phones) */
@media (max-width: 768px) {
  .sp-card {
    height: 160px;
  }
  .sp-title {
    font-size: 14px;
    padding: 6px 14px;
  }
  .sp-overlay h3 {
    font-size: 18px;
  }
  .sp-overlay p {
    font-size: 13px;
  }
  .sp-button {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* Extra small devices (very small screens) */
@media (max-width: 480px) {
  .sp-card {
    height: 140px;
  }
  .sp-title {
    font-size: 13px;
    padding: 5px 12px;
  }
  .sp-overlay h3 {
    font-size: 16px;
  }
  .sp-overlay p {
    font-size: 12px;
  }
  .sp-button {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .sp-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .sp-grid .col {
    width: 100% !important;
    max-width: none !important;
  }
}

.payment-methods .pay-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2c2f63;
  color: #cfd8df;
  max-width: 140px;
  flex: 1;
}

/* =========================
   Media Queries (Appends)
   ========================= */
@media (max-width: 576px) {
  /* Slot providers: mobile tweaks */
  .sp-title {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

.payment-methods .pay-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.payment-methods .pay-3d-img {
  position: absolute;
  bottom: -35px;
  right: -13px;
  max-width: 220px;
}

.payment-methods .col-md-5 {
  position: relative;
}

/* =======================
   Footer: Mobile app banner
   ======================= */
.mobile-app-banner {
  background-color: #000;
  border: 1px solid #b8923b;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.gold-text {
  font-size: 47px;
  font-weight: 700;
  background: linear-gradient(90deg, #d4af37 0%, #fce97f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}

.download-btn {
 background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  color: #000;
  box-shadow: inset 0 -5px 0 #876800, 2px 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 18px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  justify-content: center;
  text-align: center;
}

.download-btn:hover {
  background: #f5d673;
  color: #000;
}

.mobile-wrapper {
  position: relative;
  display: inline-block;
}

.qr-section {
  color: #e0b74b;
}

.qr-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d4af37 0%, #fce97f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qr-border {
  border: 1px solid #e0b74b;
  border-radius: 8px;
  background: #0d0d0d;
}

.qr-note {
  background: linear-gradient(90deg, #d4af37 0%, #fce97f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.9rem;
}

.icon-android{
  background-color: #000;
  border-radius: 12px;
  width:25px;
  height:26px;
}

.btn{
  justify-content: center;
  text-align: center;
}

/* ---------------------------------- */
/* 📱 Responsive Styles (Desktop unchanged) */
/* ---------------------------------- */
/* ≤ 1200px - slightly reduce width */
@media (max-width: 1200px) {
  .mobile-app-banner {
    max-width: 1150px;
  }
}

/* ≤ 968px - compact banner width */
@media (max-width: 968px) {
  .mobile-app-banner {
    max-width: 900px;
    width: 95%;
  }
}

/* ≤ 768px - smaller tablets */
@media (max-width: 768px) {
  .mobile-app-banner {
    max-width: 700px;
    width: 90%;
    padding: 30px 15px;
  }
}

/* ≤ 576px - small mobile phones */
@media (max-width: 576px) {
  .mobile-app-banner {
    max-width: 500px;
    width: 92%;
    padding: 25px 12px;
  }
}

/* ≤ 468px - very small devices */
@media (max-width: 468px) {
  .mobile-app-banner {
    max-width: 420px;
    width: 95%;
    padding: 20px 10px;
  }
}
/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .gold-text {
    font-size: 1.8rem;
  }

  .download-btn {
    padding: 9px 16px;
    font-size: 0.95rem;
  }

  .qr-title {
    font-size: 1.3rem;
  }

  .qr-border {
    padding: 8px;
  }
}

/* Tablets & Small Devices (≤ 768px) */
@media (max-width: 768px) {
  .mobile-app-banner {
    text-align: center;
    padding: 30px 15px;
  }

  .gold-text {
    font-size: 1.6rem;
  }

  .mobile-wrapper {
    max-width: 220px;
    margin: 20px auto;
  }

  .download-btn {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .qr-section {
    margin-top: 25px;
  }

  .qr-title {
    font-size: 1.2rem;
  }

  .qr-note {
    font-size: 0.85rem;
  }
}

/* Mobile Phones (≤ 480px) */
@media (max-width: 480px) {
  .mobile-app-banner {
    padding: 25px 12px;
  }

  .gold-text {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .download-btn {
    font-size: 0.85rem;
    padding: 7px 14px;
  }

  .mobile-wrapper {
    max-width: 180px;
  }

  .qr-title {
    font-size: 1.1rem;
  }

  .qr-border {
    padding: 6px;
  }

  .qr-note {
    font-size: 0.8rem;
  }
}



/* =======================
   About page
   ======================= */
.about-banner {
  background-image: linear-gradient(
      180deg,
      #000000 0%,
      #0000005c 50%,
      #000000 100%
    ),
    url("../images/banners/Home page.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-content {
  color: #cfd8df;
}

.about-content h1 {
  font-weight: 700;
}

.about-card {
  border: 1px solid #ffffff66;
  border-radius: 16px;
}

.about-title {
  background: linear-gradient(90deg, #d3af37, #fff788, #d3af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About page background */
body.about-page {
  background-image: url("../images/banners/about-bg-banner.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.casino-banner-border {
  width: 1096px;
  height: 465px;
  background: linear-gradient(90deg, #d4af37, #f5d76e, #b8860b);
  border-radius: 6px;
  padding: 2px;
  margin: 0 auto;
  box-sizing: border-box;
}

.casino-banner-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.casino-banner-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (max-width: 768px) {
  .casino-banner-border {
    width: 90%;
    height: auto;
    margin: 30px auto;
    padding: 1.5px;
  }

  .casino-banner-inner {
    height: auto;
  }

  .casino-banner-inner img {
    height: auto;
    object-fit: contain;
  }
}

.vip-banner-border {
  width: 1096px;
  height: 465px;
  background: linear-gradient(
    90deg,
    #d4af37,
    #f5d76e,
    #b8860b
  ); /* gold gradient border */
  border-radius: 6px;
  padding: 2px;
  margin: 50px auto 0;
  box-sizing: border-box;
}

.vip-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.vip-banner-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vip-banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #e7c85b;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.vip-banner-text h1 {
  font-size: 43px;
  font-weight: 700;
  margin: 0;
}

.vip-banner-text p {
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: 10px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .vip-banner-border {
    width: 90%;
    height: auto;
    margin: 30px auto;
    padding: 1.5px;
  }

  .vip-banner-inner {
    height: auto;
  }

  .vip-banner-inner img {
    height: auto;
    object-fit: contain;
  }

  .vip-banner-text {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .vip-banner-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .vip-banner-text p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .vip-banner-text h1 {
    font-size: 20px;
  }

  .vip-banner-text p {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}
