/**
 * Theme Name:     GeneratePress Child
 * Author:         Tom Usborne
 * Template:       generatepress
 * Text Domain:	   generatepress-child
 * Description:    GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
 */

/* ----------------------------------------------------------------- */
/*-----------------------------GLOBAL CSS---------------------------*/
* {
	font-family: "Fira Sans", sans-serif !important;
}

.max-w{
    max-width: 1232px;;
}

.prime-typos h2{
	font-family: "Amaranth", Sans-serif;
	    font-size: clamp(20px, 3vw + 0.5rem, 38px) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
}

/* a {
    color: #FFA600;
}

a:hover {
    color: #FFC251;
} */

/* ============================================
   Payment Network Slider
   ============================================ */

/* ── Wrapper ── */
.pn-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 20px 0;
}

/* ── Fade overlays at both ends ── */
.pn-slider-fade-left,
.pn-slider-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

/* .pn-slider-fade-left {
    left: 0;
    background: linear-gradient(
        to right,
        var(--pn-bg-color, #151516) 0%,
        transparent 100%
    );
}

.pn-slider-fade-right {
    right: 0;
    background: linear-gradient(
        to left,
        var(--pn-bg-color, #151516) 0%,
        transparent 100%
    );
} */

/* ── Slick track ── */
.pn-slider {
    width: 100%;
}

.pn-slider .slick-list {
    overflow: visible !important;
}

.pn-slider .slick-track {
    display: flex !important;
    align-items: center;
}

/* ── Individual slide ── */
.pn-slide-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    outline: none;
}

/* ── Coin image container ── */
.pn-coin-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pn-coin-wrap:hover {
    transform: scale(1.12);
}

.pn-coin-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* ── Hide default slick arrows/dots (auto-scroll only) ── */
.pn-slider .slick-arrow,
.pn-slider .slick-dots {
    display: none !important;
}

/* ── Responsive coin size ── */
@media ( max-width: 768px ) {
    .pn-coin-wrap {
        width: 54px;
        height: 54px;
    }

    .pn-slider-fade-left,
    .pn-slider-fade-right {
        width: 60px;
    }
}

/*-------------------------Absolute Image Styling----------------------------  */

@media(min-width: 1400px){
    .abs-card-img img {
        min-width: 300px;
    }
}

@media(min-width: 1024px) and (max-width: 1400px){
    .abs-card-img img {
        min-width: 19vw;
    }
}

@media(min-width: 767px) and (max-width: 1024px){
    .abs-card-img img {
        min-width: 25vw;
    }
}

@media(max-width: 767px){
    .abs-card-img img {
        min-width: 300px;
    }
}

@media(max-width: 450px){
    .abs-card-img img {
        min-width: 70vw;
    }
}


/* -----------------To The Top Button-------------------------- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 10px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;

    /* Hidden state — off screen to the right */
    opacity: 0;
    visibility: hidden;
    transform: translateX(80px);
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.4s ease,
                visibility 0.4s ease;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#backToTop:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
}

#backToTop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ----------------Body Styling------------------------ */

body {
  background-color: #151516;
}

#header-cont {
  z-index: 999;
  background: #20242487;
  backdrop-filter: blur(3px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#header-cont .grad-btn a {
	background: linear-gradient(87.1deg, #CD841E 26%, #DF7C35 70%, #C35E16 100%) !important;
	border: 1px solid #DA996A
}

/* #header-cont .grad-btn {
	border-radius: 40px !important;
} */

/* ----------hero section start-------- */

.hero-banner {
  position: relative;
  overflow: visible; /* important */
}

.hero-img {
  position: absolute;
  top: -60px; 
  left: 0;
  width: 100% !important;
  height: calc(100% + 61px) !important; 
  z-index: 0;
}

img.hero-img {
  width: 100%;
  object-fit: cover !important;
  object-position: center;
}

h1 {
    color: #fff;
    font-size: clamp(24px,4vw,36px);
    font-family:"Amaranth", Sans-serif;
    font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1 p {
    margin: 0;
}

.diff-font1 { 
	font-size:clamp(44px,6vw,74px); 
	font-weight: 700; }

h1 span.diff-font2 {
  display: inline-block;
  background: #FFD900;
  color: #13151C;
  font-size: clamp(22px,3vw,33px);
  font-weight: 700;
  padding: 0px 10px;
  border-radius: 16px;
  vertical-align: top;
  margin-left: 8px;
}
h1 > p:last-child {
  font-size: clamp(18px,2vw,22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.diff-font1 {
  background: linear-gradient(180deg, #A7CDFF 22.27%, #477EC6 63.07%, #8FB9F1 82.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wp-row {
	padding: 20px 0px 0px 0px;
}
.wp-upto {
  vertical-align: top;
  font-size: clamp(18px,2vw,22px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.6;
}



/* ------hero section end------ */

.grad-btn .elementor-button{
    background: linear-gradient(86.93deg, #4667D5 27.17%, #3863F2 70.53%, #2952DB 98.47%);

}

.grad-txt,
.grad-txt p,
.grad-txt h1,
.grad-txt h2{
    background: linear-gradient(83.97deg, #46CB44 48.74%, #A6FDA4 83.35%, #F3F3F3 96.1%);
	 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rad-grad {
	background: radial-gradient(49.92% 147.33% at 50% 100.06%, rgba(113, 236, 111, 0.3) 0%, rgba(237, 237, 237, 0.04) 100%);
}

.grad-2 {
	background: linear-gradient(0deg, #212530, #212530), linear-gradient(0deg, rgba(237, 237, 237, 0.04), rgba(237, 237, 237, 0.04));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.shadow-box {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.shadow-box-2{
    box-shadow:
        0px 3px 4px 0px #D6B49A,
        0px 3px 4px 0px #D6B49A66,
        inset 0px -3px 4px 0px #EDE1D5;
}

.shadow-box-3 {
/* 	box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15); */
	border: 2px solid rgba(255, 255, 255, 0.15);
}
.shadow-box-4{
	box-shadow:
        inset 0px -3px 1px 0px #EDE1D5,
        0px 3px 4px 0px #D6B49A66,
        0px 3px 0px 0px #D6B49A;
}
.diff-font {
    font-size: clamp(30px,5vw,90px);
}

.text-shadow{
    text-shadow: 0px 4px 6px #00000080;
}
/* welcome banner */
.welcome-ban {
  display: inline-block;
  background:#843225;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  font-family:"Amaranth", Sans-serif;
  letter-spacing: 0.05em;
  padding: 0 20px;
  white-space: nowrap;
  line-height:1.5em;
	margin-bottom:1em;

  /* Single V-notch on left and right */
  clip-path: polygon(
    0%   0%,
    100% 0%,
    95%  50%,
    100% 100%,
    0%   100%,
    5%   50%
  );
}
@media (max-width: 767px) {
    img.hero-img {
        object-position: left;
    }
}
p.hero-txt {
  /* Font */
  font-size: clamp(32px,2vw,48px) !important;
  font-weight: 700;
  color: #FFCC01;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;

  /* Outline + layered glow effect */
  -webkit-text-stroke: 2px #7A2A1A;
  text-shadow:
    0 0 8px rgba(255, 200, 0, 0.6),   /* yellow inner glow */
    2px 2px 0px #A0330A,              /* bottom-right shadow depth */
    -1px -1px 0px #7A2A1A;           /* top-left outline reinforcement */
}

/* Main button */
.join-btn .elementor-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:80px;

    background:url('/wp-content/uploads/2026/05/Button-bb-jb.webp') no-repeat center;
    background-size:100% 100%;
    background-color:transparent !important;

    border:none !important;
    border-radius:14px !important;

    padding:0 20px;

    text-shadow:
        1.4px -0.5px 0px #098A00,
        0.5px -1.2px 0px #098A00,
        -1px -0.9px 0px #098A00,
        -0.2px 0.2px 0px #098A00,
        -0.6px 1.2px 0px #098A00,
        0.6px 1px 0px #098A00,
        1.4px 0px 0px #098A00,
        0px 2px 0px #098A0066;
}

@media (max-width: 767px){
    .join-btn .elementor-button{
        height:60px;
    }
}
.casino-review table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.casino-review table th,
.casino-review table td {
    border: 1px solid #fff;
    padding: 10px;
}

.casino-review table th {
    background: #fff;
}

/* Mobile table scroll only */
@media (max-width: 767px){

    .casino-review table{
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
}
.grad-btn .elementor-button-text,
.head-grad-btn .elementor-button-text {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 1px #843225;
  text-shadow: 1px 2.5px 0px #843225;
}
.btn a.elementor-button.elementor-button-link.elementor-size-sm:hover {
        box-shadow: 2px 2px 10px 1px #CC7D56;
}


@media(max-width:767px){
	.mobile-icon img{
  min-width: 30px !important;
  max-width: 30px !important;
}
.mobile-icon .e-con-full{
  gap: 15px !important;
}

.mobile-icon h3{
  font-size: 16px !important;
  line-height: 140% !important;
}
.mobile-icon .elementor-widget-image {
	min-width: 30px !important;
	max-width: 30px !important;
	width: 100% !important;
}
}

.casino-review a{
    color:#ff0000;
    text-decoration: underline !important;
}
.casino-review a:hover{
    color:#cc0000 !important;
    text-decoration: none !important;
}