@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    list-style: none;
    text-decoration: none;
}


:root {
    --white: #ffffff;
    --btn_bg:#1769FF70;
    --btn_hover:#25388f;
    --bg_color:#030515;
  }


/* preloader */
#preloader {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: #030515;
  }
  .wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .loader {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 16px solid purple;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .preloader.hidden {
    display: none;
  }



/* preloader */

h1,h2,h3,h4,h5,h6,p,span{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    list-style: none;
}
  
.manubar{
    background-color: #14237a90;
    position: absolute;
    width: 100%;
    padding: 15px 0;
    top: 0;
    left: 0;
    transition:top 1s ease-in-out;

}

.banner_area .manubarbg{
    background-color: #070C2C  !important;
    z-index: 9999;
}



.logo_icon .navbar-brand{
    display: flex;
    align-items: center;
}

.logo_text{
    font-size: 20px;
    line-height: 37.2px;
    font-weight: bold;
    color: var(--white);
    padding-left: 8px;
}

.navbar-nav .nav-item .nav-link{
        font-size: 14px;
        line-height: 16.8px;
        font-weight: 700;
        color: var(--white);
}

.signin_btn{
    padding: 10px 16px;
    color: var(--white);
    border-color: var(--btn_bg);
    transition: all 0.5s ease-in-out;
}
.signup_btn{
    background-color: var(--btn_bg);
    color: var(--white);
    padding: 10px 16px;
    transition: all 0.5s ease-in-out;
}
.signin_btn:hover{
    background-color: var(--btn_hover);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.signup_btn:hover{
    background-color: var(--btn_hover);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1199px) {

    .navbar-nav{
        padding: 20px 0;
    }


}

.banner_area{
    background-color: #0E1647;
    padding-top: 100px;
    position: relative;
    z-index: 9;
}
 .right_img img{
    position:absolute;
    right: 0;
    bottom: 0;
    max-width: 56%;
    z-index: 99;
    animation: left_animation 4s infinite alternate;
}
@keyframes left_animation {
    0%   {transform: translateX(-40px);}
    100% {transform: translateX(0px);}
}



  
.left_img img{
    position:absolute;
    left: 0;
    top: 150px;
    z-index: 99;
    animation: left_animaiton_img;
    animation-duration: 5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    max-width: 9%;

}
@keyframes left_animaiton_img {
    0%   {transform: translateX(40px);}
    100% {transform: translateX(0px);}
  }

  @media screen and (max-width: 568px) {

    .left_img img {
        display: none;
    }


}
.left_contain{
    padding-top: 180px;
    padding-bottom: 165px;
    position: relative;
    z-index: 999;
}

@media screen and (max-width: 1199px) {

    .left_contain {
        padding-top: 100px;
        padding-bottom: 100px;
        position: relative;
        z-index: 999;
    }


}

.left_contain h4,h1,p{
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
}
.left_contain h4{

    font-size: 25px;
    line-height: 30px;
    padding-bottom: 20px;
    font-weight: bold;

}
.left_contain h1{
    font-size: 49px;
    line-height: 58.8px;
    padding-bottom: 20px;
    font-weight: bold;
}
.left_contain p{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 50px;
}
.left_contain .banner_btn{
    font-size: 18px;
    line-height: 19.2px;
    font-weight: 400;
    padding: 14px 30px;
    margin-top: 36px;
    border-radius: 8px;
    background-color: var(--btn_bg);
    color: var(--white);
    border-style: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;

   
}
.left_contain .banner_btn:hover{
    background-color: var(--btn_hover);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: var(--btn_bg) solid 1px;
   
}
.left_contain .banner_btn:active,
.left_contain .banner_btn:focus,
.left_contain .banner_btn:focus-visible {
    border-style: none !important;
}
.right_contain{
    position: relative;
    z-index: 55;
}

.winner_contain_area{
    padding-left: 24px;
    padding-right: 24px;
    background-color: var(--bg_color);
    color: var(--white);
   
}
.swiper {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.topwinner_header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 32px;

}

.topwinner_header h2{
    font-weight: bold;
}

.topwinner_header .overlay_btn_effect{
    position: relative;
}


.topwinner_header a.banner_btn {
    font-size: 18px;
    line-height: 19.2px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: var(--btn_bg);
    color: var(--white);
    border-style: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;

}

.topwinner_header a.banner_btn:hover {
    background-color: var(--btn_hover);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.box_contain {
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 24px;
    background-color: #1769FF50;
}
.box_contain img{
    border-radius: 16px;
}
.winner_name{
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.right_text_area p{
    font-size: 16px;
    line-height: 22px;
    color: #1D2766;
    text-shadow: none;
    margin-bottom: 8px;
    color: var(--white);
}
.right_text_area h5{
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
}

.favourate_player_first{
    padding: 40px;
    background: var(--bg_color);
    color: var(--white);
}
.favourate_player{
    background-color: var(--bg_color);
    color: var(--white);
}
.favourate_player .player_heading h2{
    font-weight: bold;
}
.favourate_player .contain_area .inner_contain{
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.favourate_player .contain_area .inner_contain img{
    width: 100%;
    border-radius: 8px;
}
.favourate_player .contain_area .inner_contain:hover .hover_effect{
    position: relative;
    top: -100px;
    transition: all .6s ease-in-out;
    border-radius: 8px;

}
.favourate_player .contain_area .inner_contain:hover .overlay{
    height: 100%;
    transition: all .6s ease-in-out;
    border-radius: 8px;

}
.favourate_player .contain_area .inner_contain .hover_effect{
    position: relative;
    top: 70px;
    transition: all .6s ease-in-out;

}
.favourate_player .contain_area .inner_contain .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #0E1647;
    opacity: 40%;
    transition: all .6s ease-in-out;

}
.favourate_player .contain_area .hover_contain{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;


}
.favourate_player .contain_area .hover_contain .inner_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
.favourate_player .contain_area .hover_contain img{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 14px;
    cursor: pointer;


}

.favourate_player .contain_area .hover_contain a{
    background-color: #25388F;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    list-style: none;
}

.promotion_section {
    background-color: var(--bg_color);
    color: var(--white);
}
.promotion_section .promotion_contain h2{
    font-weight: bold;
}
.promotion_section .promotion_contain .slider_card_main{
    background-color: #1D2766;
    border-radius: 8px;
    border: 1px solid #191a20;
    position: relative;
    overflow: hidden;

}
.promotion_section .promotion_contain .slider_card_main .circle{
    height: 118%;
    width: 65%;
    background-color: #0D1341;
    position: absolute;
    top: -17px;
    left: -100px;
    border-radius: 50%;



}
.promotion_section .promotion_contain .slider_card_main .promotion_card_area{
   position: relative;
   top: 50%;
   left: 50%;
   transform: translate(-50% , -50%);
   z-index: 99;

}

.promotion_section .promotion_contain .slider_card_area{
    padding: 40px 0;
    position: relative;
}
.promotion_section .promotion_contain .slider_card_area .gift{
    position: absolute;
    right: 30px;
    top: 30px;
}
.promotion_section .promotion_contain .slider_card_area .gift1{
    position: absolute;
    right: 10px;
    bottom: 30px;
}

.promotion_section .promotion_contain .slider_card_area h6{
  
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}
.promotion_section .promotion_contain .slider_card_area h3{
  
    font-size: 31px;
    line-height: 37px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}
.promotion_section .promotion_contain .slider_card_area .slider_btn{
  
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    padding: 16px 30px;
    border-style: none !important;
    color: #1769FF;
    border-radius: 8px;
}



@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

  .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }

  .marquee-content {
    animation: marquee 10s linear infinite;
    display: inline-block;
    width: max-content; /* Adjusts the width of the content */
  }

.footer_slider{
    padding: 5px 0;
    background-color: #1D2766;
    border-bottom: 1px solid #00000009;
}
.footer_slider img{
    padding: 20px;
}
.footer_slider_container {
    width: 100%;
    overflow: hidden;
    background: #f1f1f1; /* or any background color you prefer */
}

.footer_slider {
    display: flex;
    width: 200%;
    animation: scroll 24s linear infinite;
}

.footer_slider img {

    margin: 0 12px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



.footer{
    background-color: #0E1647;
    padding: 20px 0;
    color: var(--white);
}

.footer_contain{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_contain span{
    color: #1769FF;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}
.footer_contain p{
  text-shadow: none;
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;

}
.footer_btn{
    outline: none;
    display: flex;
    gap: 20px;
}
.footer_btn a{
    cursor: pointer;
}

@media only screen and (max-width: 1199px) {

    .footer_contain{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }


}
@media only screen and (max-width: 575px) {
    .footer_contain p {
        text-shadow: none;
        color: #0E1647;
        font-size: 12px;
        line-height: 19px;
        font-weight: 400;
    }
    .footer_btn img{
       width: 100px;
    }
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: none;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: 1px solid #ffffff50;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.swiper .swiper-button-prev::after {
    display: none;
}
.swiper .swiper-button-next::after {
    display: none;
}

.swiper  .swiper-button-next{
    height: 30px;
    background-color: var(--btn_bg);
    width: 30px;
    border-radius: 50%;
    transition: all .5s ease-in-out;


}
.swiper  .swiper-button-next:hover{
    background-color:  var(--btn_hover);
    transition: all .5s ease-in-out;
}
.swiper .swiper-button-prev {
    height: 30px;
    background-color: var(--btn_bg);
    width: 30px;
    border-radius: 50%;
    transition: all .5s ease-in-out;

}
.swiper .swiper-button-prev:hover {
    background-color:  var(--btn_hover);
    transition: all .5s ease-in-out;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,0px) !important;
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,0px) !important;
    right: auto;
}

.topwinner_header_soon {
    padding-top: 40px
}

.active{
    position: fixed;
    top: 0px; 
    left: 0;
    width: 100%;
    background-color: #1D2766;
    transition:top 1s ease-in-out;
    z-index: 1000; 
  }

  .Coming{
    padding-bottom: 40px;
  }

  .casino_padding{
    padding-top: 20px;
  }

  .navbar-toggler{
    background-color: #374895;
  }



  @media screen and (max-width: 575px) {

    .favourate_player_first {
        padding: 0px; 
    }


  }

  @media screen and (max-width: 350px) {
    .swiper {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .right_text_area h5 {
        font-size: 16px;
        line-height: 18px;
        font-weight: bold;
    }
    .box_contain {
        padding: 8px;
    }
    .favourate_player_first {
        padding: 0px;
    }
    .topwinner_header_soon {
        padding-top: 20px;
    }
    .Coming{
        padding-bottom: 20px;
      }
    

  }


.logo_icon .navbar-brand img{
  max-height: 44px;
  width: auto;
}

/* Make top header slimmer */
.manubar {
  padding: 8px 0;   /* было больше — уменьшаем */
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

/* ===== Onboarding / Registration Section ===== */
.onboarding_section{
  padding: 64px 0;
  background: radial-gradient(1200px 500px at 15% 20%, rgba(255, 204, 0, 0.12), transparent 55%),
              radial-gradient(900px 450px at 85% 30%, rgba(0, 160, 255, 0.14), transparent 55%),
              #0b1445;
  color: #fff;
  overflow: hidden;
}

.onboarding_grid{
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.section_badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.onboarding_title{
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0 0 14px 0;
  font-weight: 800;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.brand_accent{
  color: #ffcc00;
}

.onboarding_subtitle{
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 0 22px 0;
  color: rgba(255,255,255,0.88);
}

/* Steps */
.steps_list{
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.step_item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.step_icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 12px 28px rgba(255,204,0,0.22);
}

.step_body h3{
  font-size: 1.15rem;
  margin: 2px 0 4px 0;
  font-weight: 800;
}

.step_body p{
  margin: 0;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

/* CTA */
.cta_row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta_primary,
.cta_secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta_primary{
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  color: #0b1445;
  box-shadow: 0 18px 40px rgba(255,204,0,0.22);
}

.cta_primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(255,204,0,0.28);
}

.cta_secondary{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}

.cta_secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}

.cta_note{
  margin: 12px 0 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
}

/* Bonus card */
.bonus_card{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  position: relative;
}

.bonus_card:before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: radial-gradient(700px 160px at 30% 0%, rgba(255,204,0,0.22), transparent 60%),
              radial-gradient(600px 220px at 80% 20%, rgba(0,160,255,0.18), transparent 60%);
  pointer-events: none;
}

.bonus_top{
  position: relative;
  padding: 14px 14px 16px 14px;
  border-radius: 14px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

.bonus_kicker{
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.bonus_title{
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
}

.bonus_highlight{
  color: #ffcc00;
  text-shadow: 0 14px 32px rgba(255,204,0,0.18);
}

.bonus_line{
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}

.bonus_features{
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px 6px 6px 6px;
}

.feature_item{
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,0.86);
  line-height: 1.45;
}

.feature_dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  margin-top: 6px;
  box-shadow: 0 10px 20px rgba(255,204,0,0.18);
}

.bonus_cta{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 18px 40px rgba(255,204,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus_cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(255,204,0,0.28);
}

.bonus_disclaimer{
  position: relative;
  margin: 12px 0 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px){
  .onboarding_grid{
    grid-template-columns: 1fr;
  }
  .bonus_card{
    order: -1;
  }
  .onboarding_title{
    font-size: 2rem;
  }
}

@media (max-width: 575px){
  .onboarding_section{
    padding: 48px 0;
  }
  .onboarding_title{
    font-size: 1.75rem;
  }
  .cta_row{
    flex-direction: column;
  }
  .cta_primary,
  .cta_secondary{
    width: 100%;
  }
}

/* ===== Land-Based Venue Section ===== */

.venue_section{
  padding: 80px 0;
  background: linear-gradient(180deg, #0b1445 0%, #0f1b5e 100%);
  color: #fff;
}

.venue_image_wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.venue_image_wrap img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.venue_image_wrap:hover img{
  transform: scale(1.04);
}

.section_badge{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.venue_title{
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffcc00;
}

.venue_lead{
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.venue_content p{
  line-height: 1.7;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
}

.venue_highlights{
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.highlight_item{
  font-weight: 600;
  color: #ffcc00;
}

/* Responsive */

@media (max-width: 991px){
  .venue_section{
    padding: 60px 0;
  }
  .venue_title{
    font-size: 2rem;
  }
}


/* ===== Benefits Section ===== */
.benefits_section{
  padding: 80px 0;
  background: radial-gradient(1200px 520px at 15% 20%, rgba(255, 204, 0, 0.10), transparent 55%),
              radial-gradient(900px 480px at 85% 35%, rgba(0, 160, 255, 0.14), transparent 60%),
              #0b1445;
  color: #fff;
}

.benefits_header{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 34px auto;
}

.benefits_title{
  font-size: 2.4rem;
  font-weight: 900;
  margin: 10px 0 12px 0;
  color: #ffcc00;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.benefits_subtitle{
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

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

.benefit_card{
  text-align: left;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 45px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
}

.benefit_card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 22px 60px rgba(0,0,0,0.36);
}

.benefit_icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 18px 40px rgba(255,204,0,0.18);
}

.benefit_icon svg{
  width: 22px;
  height: 22px;
}

.benefit_card h3{
  font-size: 1.12rem;
  font-weight: 900;
  margin: 0 0 6px 0;
}

.benefit_card p{
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
}

/* Highlight the Online Casino card */
.highlight_card{
  border-color: rgba(255,204,0,0.35);
}

.highlight_card:before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 220px at 20% 0%, rgba(255,204,0,0.18), transparent 55%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1199px){
  .benefits_grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px){
  .benefits_section{ padding: 64px 0; }
  .benefits_grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits_title{ font-size: 2rem; }
}

@media (max-width: 575px){
  .benefits_grid{ grid-template-columns: 1fr; }
}

/* ===== Live Games Grid (Trending) ===== */

#live_games{
  padding: 70px 0;
  background: radial-gradient(1100px 420px at 15% 25%, rgba(255,204,0,0.10), transparent 55%),
              radial-gradient(900px 420px at 85% 30%, rgba(0,160,255,0.12), transparent 60%),
              #0b1445;
}

#live_games .topwinner_header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

#live_games .topwinner_header h2{
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffcc00;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

#live_games .topwinner_header .banner_btn{
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
}

/* Cards */
#live_games .inner_contain{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

#live_games .inner_contain:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 65px rgba(0,0,0,0.42);
}

#live_games .inner_contain img{
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay */
#live_games .overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,20,69,0.10) 0%, rgba(11,20,69,0.82) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

#live_games .inner_contain:hover .overlay{
  opacity: 1;
}

/* Hover content */
#live_games .hover_effect{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

#live_games .inner_contain:hover .hover_effect{
  opacity: 1;
  transform: translateY(0);
}

#live_games .inner_box{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

#live_games .inner_box img{
  width: 22px;
  height: 22px;
}

#live_games .inner_box a{
  text-decoration: none;
  font-weight: 900;
  color: #ffcc00;
}

/* Tighten gutters a bit on small screens */
@media (max-width: 575px){
  #live_games{
    padding: 54px 0;
  }
  #live_games .topwinner_header h2{
    font-size: 1.75rem;
  }
}


/* ===== Live Games Grid (Trending) ===== */

#live_games{
  padding: 70px 0;
  background: radial-gradient(1100px 420px at 15% 25%, rgba(255,204,0,0.10), transparent 55%),
              radial-gradient(900px 420px at 85% 30%, rgba(0,160,255,0.12), transparent 60%),
              #0b1445;
}

#live_games .topwinner_header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

#live_games .topwinner_header h2{
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffcc00;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

#live_games .topwinner_header .banner_btn{
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
}

/* Cards */
#live_games .inner_contain{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

#live_games .inner_contain:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 65px rgba(0,0,0,0.42);
}

#live_games .inner_contain img{
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay */
#live_games .overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,20,69,0.10) 0%, rgba(11,20,69,0.82) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

#live_games .inner_contain:hover .overlay{
  opacity: 1;
}

/* Hover content */
#live_games .hover_effect{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

#live_games .inner_contain:hover .hover_effect{
  opacity: 1;
  transform: translateY(0);
}

#live_games .inner_box{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

#live_games .inner_box img{
  width: 22px;
  height: 22px;
}

#live_games .inner_box a{
  text-decoration: none;
  font-weight: 900;
  color: #ffcc00;
}

/* Tighten gutters a bit on small screens */
@media (max-width: 575px){
  #live_games{
    padding: 54px 0;
  }
  #live_games .topwinner_header h2{
    font-size: 1.75rem;
  }
}


/* ===== Promotions / Loyalty (new design) ===== */
.gr_promos{
  padding: 86px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.12), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.gr_promos .container{
  max-width: 1180px; 
}

.gr_promos__header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.gr_promos__kickers{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.gr_kicker{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
  font-size: .92rem;
}

.gr_kicker--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.gr_promos__title{
  margin: 0 0 12px 0;
  font-size: 2.6rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.gr_promos__subtitle{
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.gr_promos__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

/* Cards */
.gr_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  overflow: hidden;
  position: relative;
}

.gr_card:before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .9;
}

.gr_card--venue:before{
  background: radial-gradient(560px 220px at 18% 0%, rgba(255,204,0,0.14), transparent 60%);
}

.gr_card--online:before{
  background:
    radial-gradient(560px 220px at 88% 0%, rgba(0,160,255,0.18), transparent 60%),
    radial-gradient(520px 220px at 18% 20%, rgba(255,204,0,0.10), transparent 60%);
}

.gr_card__top{
  position: relative;
  padding: 24px 24px 10px 24px;
}

.gr_tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
  background: rgba(255,204,0,0.18);
  border: 1px solid rgba(255,204,0,0.28);
  margin-bottom: 12px;
}

.gr_tag--blue{
  background: rgba(0,160,255,0.16);
  border-color: rgba(0,160,255,0.26);
}

.gr_card__title{
  margin: 0 0 10px 0;
  font-size: 1.78rem;
  font-weight: 950;
  line-height: 1.15;
}

.gr_card__lead{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.gr_card__section{
  position: relative;
  padding: 14px 24px 18px 24px;
}

.gr_h4{
  margin: 0 0 10px 0;
  font-size: 1.12rem;
  font-weight: 950;
}

.gr_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}

.gr_list li{
  position: relative;
  padding-left: 18px;
}

.gr_list li:before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  box-shadow: 0 12px 26px rgba(255,204,0,0.18);
  transform: translateY(-50%);
}

.gr_pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gr_pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 850;
  color: rgba(255,255,255,0.9);
}

.gr_note{
  margin: 12px 0 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
}

.gr_accent{ color: #ffcc00; font-weight: 950; }
.gr_sep{ opacity: .6; padding: 0 6px; }

/* Offers */
.gr_offers{
  position: relative;
  padding: 0 24px 8px 24px;
  display: grid;
  gap: 14px;
}

.gr_offer{
  border-radius: 18px;
  padding: 16px 16px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 45px rgba(0,0,0,0.28);
}

.gr_offer--primary{
  border-color: rgba(255,204,0,0.34);
  background:
    radial-gradient(520px 220px at 20% 0%, rgba(255,204,0,0.14), transparent 60%),
    rgba(11,20,69,0.60);
}

.gr_offer__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.gr_badge{
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.gr_badge--gold{
  background: rgba(255,204,0,0.18);
  border-color: rgba(255,204,0,0.28);
}

.gr_badge--blue{
  background: rgba(0,160,255,0.16);
  border-color: rgba(0,160,255,0.24);
}

.gr_offer__value{
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}

.gr_checks{
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.84);
}

.gr_checks li{
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.gr_checks li:before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  transform: translateY(-50%);
}

.gr_checks li:after{
  content: "";
  position: absolute;
  left: 4px;
  top: .55em;
  width: 7px;
  height: 4px;
  border-left: 2px solid #0b1445;
  border-bottom: 2px solid #0b1445;
  transform: translateY(-50%) rotate(-45deg);
}

/* Event grid */
.gr_eventgrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr)); /* ключ: не 2, а 3 — выглядит богаче */
  gap: 12px;
  margin-top: 10px;
}

.gr_event{
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.gr_event__tag{
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 8px;
}

.gr_event__name{
  font-weight: 950;
  margin-bottom: 6px;
}

.gr_event__val{
  color: rgba(255,255,255,0.86);
  font-weight: 850;
}

/* Buttons */
.gr_card__actions{
  position: relative;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gr_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 18px 40px rgba(255,204,0,0.20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gr_btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(255,204,0,0.26);
}

.gr_btn--ghost{
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.gr_btn--ghost:hover{
  background: rgba(255,255,255,0.12);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991px){
  .gr_promos{ padding: 64px 0; }
  .gr_promos__grid{ grid-template-columns: 1fr; }
  .gr_promos__title{ font-size: 2.05rem; }
  .gr_eventgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 575px){
  .gr_promos__title{ font-size: 1.8rem; }
  .gr_eventgrid{ grid-template-columns: 1fr; }
}

/* ===== Force equal-height columns in Promotions section ===== */
#promotions .gr_promos__grid{
  align-items: stretch;               
}

#promotions .gr_card{
  height: 100%;                       
  display: flex;
  flex-direction: column;             /
}

#promotions .gr_card__top,
#promotions .gr_card__section,
#promotions .gr_offers{
  flex: 0 0 auto;
}

#promotions .gr_card--online .gr_card__section{
  flex: 1 1 auto;
}

/* push buttons to the bottom in both cards */
#promotions .gr_card__actions{
  margin-top: auto;
}

/* optional: keep spacing consistent */
#promotions .gr_card__actions{
  padding-top: 18px;
}

/* ===== Game Variety Section ===== */
.gamevar_section{
  padding: 86px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.gamevar_section .container{
  max-width: 1180px;
}

.gamevar_header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.gamevar_badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.gv_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
  font-size: .92rem;
}

.gv_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.gamevar_title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.gamevar_subtitle{
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.gamevar_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Cards */
.gv_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gv_card:before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .9;
}

.gv_card--venue:before{
  background: radial-gradient(560px 220px at 18% 0%, rgba(255,204,0,0.14), transparent 60%);
}

.gv_card--online:before{
  background:
    radial-gradient(560px 220px at 88% 0%, rgba(0,160,255,0.18), transparent 60%),
    radial-gradient(520px 220px at 18% 20%, rgba(255,204,0,0.10), transparent 60%);
}

.gv_top{
  position: relative;
  padding: 24px 24px 10px 24px;
}

.gv_tag{
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
  background: rgba(255,204,0,0.18);
  border: 1px solid rgba(255,204,0,0.28);
  margin-bottom: 12px;
}

.gv_tag--blue{
  background: rgba(0,160,255,0.16);
  border-color: rgba(0,160,255,0.26);
}

.gv_h3{
  margin: 0 0 10px 0;
  font-size: 1.78rem;
  font-weight: 950;
  line-height: 1.15;
}

.gv_lead{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

/* Stats */
.gv_stats{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  padding: 12px 24px 6px 24px;
}

.gv_stat{
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.gv_stat_num{
  font-size: 1.35rem;
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 2px;
}

.gv_stat_label{
  color: rgba(255,255,255,0.80);
  font-weight: 850;
  font-size: 0.92rem;
}

/* Blocks */
.gv_block{
  position: relative;
  padding: 14px 24px 18px 24px;
}

.gv_h4{
  margin: 0 0 10px 0;
  font-size: 1.12rem;
  font-weight: 950;
}

/* Lists */
.gv_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}

.gv_dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  box-shadow: 0 12px 26px rgba(255,204,0,0.18);
  margin-top: 7px;
}

.gv_list li{
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
}

/* Check list variant */
.gv_list--checks li{
  grid-template-columns: 16px 1fr;
}

.gv_check{
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  position: relative;
  margin-top: 3px;
}

.gv_check:after{
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #0b1445;
  border-bottom: 2px solid #0b1445;
  transform: rotate(-45deg);
}

.gv_accent{ color: #ffcc00; font-weight: 950; }

/* Pills */
.gv_pills{
  position: relative;
  padding: 0 24px 10px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gv_pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 850;
  color: rgba(255,255,255,0.9);
}

/* Feature grid (online) */
.gv_featuregrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.gv_feature{
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.gv_feature_title{
  font-weight: 950;
  margin-bottom: 6px;
}

.gv_feature_text{
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

/* Actions */
.gv_actions{
  position: relative;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.gv_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 18px 40px rgba(255,204,0,0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gv_btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(255,204,0,0.26);
}

.gv_btn--ghost{
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.gv_btn--ghost:hover{
  background: rgba(255,255,255,0.12);
}

/* Note */
.gv_note{
  margin: 0 24px 24px 24px;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 991px){
  .gamevar_section{ padding: 64px 0; }
  .gamevar_grid{ grid-template-columns: 1fr; }
  .gamevar_title{ font-size: 2.05rem; }
}

@media (max-width: 575px){
  .gamevar_title{ font-size: 1.8rem; }
  .gv_stats{ grid-template-columns: 1fr; }
  .gv_featuregrid{ grid-template-columns: 1fr; }
}

/* ===== Fix broken list wrapping in Game Variety section ===== */
#gaming_options .gv_list li{
  display: block;
  position: relative;
  padding-left: 18px;
}

#gaming_options .gv_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  box-shadow: 0 12px 26px rgba(255,204,0,0.18);
  transform: translateY(-50%);
}

/* hide the inline dot element (we use ::before instead) */
#gaming_options .gv_list .gv_dot{
  display: none;
}

/* prevent weird per-word breaking */
#gaming_options .gv_list{
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ===== Slots Hub Section (equal columns + premium UI) ===== */
.slots_hub{
  padding: 88px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.slots_hub .container{ max-width: 1180px; }

.slots_hub__header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.slots_hub__badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sh_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 950;
  font-size: .92rem;
}

.sh_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.slots_hub__title{
  margin: 0 0 12px 0;
  font-size: 2.6rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.slots_hub__subtitle{
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

/* ===== Grid (equal height columns) ===== */
.slots_hub__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch; 
}

/* ===== Card ===== */
.sh_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  overflow: hidden;
  position: relative;

  height: 100%;                 
  display: flex;                
  flex-direction: column;     
}

.sh_card:before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .9;
}

.sh_card--venue:before{
  background: radial-gradient(560px 240px at 18% 0%, rgba(255,204,0,0.14), transparent 62%);
}

.sh_card--online:before{
  background:
    radial-gradient(560px 240px at 88% 0%, rgba(0,160,255,0.18), transparent 62%),
    radial-gradient(520px 220px at 18% 20%, rgba(255,204,0,0.10), transparent 60%);
}

.sh_card__top{
  position: relative;
  padding: 24px 24px 10px 24px;
}

.sh_tag{
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
  background: rgba(255,204,0,0.18);
  border: 1px solid rgba(255,204,0,0.28);
  margin-bottom: 12px;
}

.sh_tag--blue{
  background: rgba(0,160,255,0.16);
  border-color: rgba(0,160,255,0.26);
}

.sh_h3{
  margin: 0 0 10px 0;
  font-size: 1.78rem;
  font-weight: 950;
  line-height: 1.15;
}

.sh_lead{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.sh_accent{ color: #ffcc00; font-weight: 950; }

/* Stats */
.sh_stats{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  padding: 12px 24px 6px 24px;
}

.sh_stat{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.sh_stat__num{
  font-size: 1.2rem;
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 2px;
}

.sh_stat__label{
  color: rgba(255,255,255,0.80);
  font-weight: 850;
  font-size: 0.92rem;
}

/* Blocks */
.sh_block{
  position: relative;
  padding: 14px 24px 18px 24px;
}

.sh_h4{
  margin: 0 0 10px 0;
  font-size: 1.12rem;
  font-weight: 950;
}

/* Two list columns */
.sh_columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Lists (stable wrapping) */
.sh_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}

.sh_list li{
  position: relative;
  padding-left: 18px;
}

.sh_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  box-shadow: 0 12px 26px rgba(255,204,0,0.18);
  transform: translateY(-50%);
}

/* Check list */
.sh_list--checks li{
  padding-left: 22px;
}

.sh_list--checks li::before{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
}

.sh_check{ display:none; } /* marker handled by ::before */

.sh_list--checks li::after{
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 7px;
  height: 4px;
  border-left: 2px solid #0b1445;
  border-bottom: 2px solid #0b1445;
  transform: translateY(-50%) rotate(-45deg);
}

/* Pills */
.sh_pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sh_pills--compact .sh_pill{
  padding: 7px 10px;
  font-size: .9rem;
}

.sh_pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 850;
  color: rgba(255,255,255,0.9);
}

/* Feature grid (online categories) */
.sh_featuregrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.sh_feature{
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.sh_feature__title{
  font-weight: 950;
  margin-bottom: 6px;
}

.sh_feature__text{
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
  margin-bottom: 8px;
}

.sh_feature__mini{
  color: rgba(255,255,255,0.65);
  font-size: .9rem;
}

/* Actions stick to bottom */
.sh_actions{
  position: relative;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto; /* IMPORTANT */
}

.sh_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 18px 40px rgba(255,204,0,0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.sh_btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(255,204,0,0.26);
}

.sh_btn--ghost{
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.sh_btn--ghost:hover{
  background: rgba(255,255,255,0.12);
  box-shadow: none;
}

.sh_note{
  margin: 10px 0 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sh_note--footer{
  margin: 0 24px 24px 24px;
}

/* Responsive */
@media (max-width: 991px){
  .slots_hub{ padding: 64px 0; }
  .slots_hub__grid{ grid-template-columns: 1fr; }
  .slots_hub__title{ font-size: 2.05rem; }
  .sh_columns{ grid-template-columns: 1fr; }
}

@media (max-width: 575px){
  .slots_hub__title{ font-size: 1.8rem; }
  .sh_stats{ grid-template-columns: 1fr; }
  .sh_featuregrid{ grid-template-columns: 1fr; }
}

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

.tables_section{
  padding: 90px 0;
  background:
    radial-gradient(1000px 450px at 15% 20%, rgba(255,204,0,0.08), transparent 60%),
    radial-gradient(800px 450px at 85% 30%, rgba(0,160,255,0.12), transparent 60%),
    #0b1445;
  color: #fff;
}

.tables_section .container{ max-width: 1180px; }

/* Header */
.tables_header{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.tables_badges{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.tg_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
}

.tg_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.tables_title{
  font-size: 2.5rem;
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 12px;
}

.tables_subtitle{
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Grid */
.tables_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Cards */
.tg_card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tg_top{ margin-bottom: 10px; }

.tg_tag{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255,204,0,0.18);
  border: 1px solid rgba(255,204,0,0.28);
  margin-bottom: 10px;
}

.tg_tag--blue{
  background: rgba(0,160,255,0.18);
  border-color: rgba(0,160,255,0.26);
}

.tg_h3{
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.tg_lead{
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Lists */
.tg_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.tg_list li{
  position: relative;
  padding-left: 18px;
}

.tg_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  transform: translateY(-50%);
}

/* Check list */
.tg_list--checks li::before{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg,#ffcc00,#ffd84d);
}

.tg_list--checks li::after{
  content:"";
  position:absolute;
  left:4px;
  top:.6em;
  width:7px;
  height:4px;
  border-left:2px solid #0b1445;
  border-bottom:2px solid #0b1445;
  transform: translateY(-50%) rotate(-45deg);
}

.tg_pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tg_pill{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
}

.tg_actions{
  margin-top: auto;
}

.tg_btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  color: #0b1445;
  background: linear-gradient(135deg,#ffcc00,#ffd84d);
}

.tg_btn--ghost{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

/* Responsive */
@media(max-width:991px){
  .tables_grid{ grid-template-columns:1fr; }
}

/* ===== Access / Rules / Login Help Section ===== */
.access_help{
  padding: 88px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.access_help .container{ max-width: 1180px; }

.access_help__header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.access_help__badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ah_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 950;
  font-size: .92rem;
}

.ah_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.access_help__title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.access_help__subtitle{
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

/* Grid - equal height */
.ah_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Cards */
.ah_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  overflow: hidden;
  position: relative;

  height: 100%;
  display: flex;
  flex-direction: column;
}

.ah_card:before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .9;
}

.ah_card--venue:before{
  background: radial-gradient(560px 240px at 18% 0%, rgba(255,204,0,0.14), transparent 62%);
}

.ah_card--online:before{
  background:
    radial-gradient(560px 240px at 88% 0%, rgba(0,160,255,0.18), transparent 62%),
    radial-gradient(520px 220px at 18% 20%, rgba(255,204,0,0.10), transparent 60%);
}

.ah_top{
  position: relative;
  padding: 24px 24px 10px 24px;
}

.ah_tag{
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
  background: rgba(255,204,0,0.18);
  border: 1px solid rgba(255,204,0,0.28);
  margin-bottom: 12px;
}

.ah_tag--blue{
  background: rgba(0,160,255,0.16);
  border-color: rgba(0,160,255,0.26);
}

.ah_h3{
  margin: 0 0 10px 0;
  font-size: 1.78rem;
  font-weight: 950;
  line-height: 1.15;
}

.ah_lead{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.ah_block{
  position: relative;
  padding: 14px 24px 18px 24px;
}

.ah_h4{
  margin: 0 0 10px 0;
  font-size: 1.12rem;
  font-weight: 950;
}

/* Lists */
.ah_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}

.ah_list li{
  position: relative;
  padding-left: 18px;
}

.ah_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  box-shadow: 0 12px 26px rgba(255,204,0,0.18);
  transform: translateY(-50%);
}

/* Check list variant */
.ah_list--checks li{
  padding-left: 22px;
}

.ah_list--checks li::before{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
}

.ah_list--checks li::after{
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 7px;
  height: 4px;
  border-left: 2px solid #0b1445;
  border-bottom: 2px solid #0b1445;
  transform: translateY(-50%) rotate(-45deg);
}

.ah_check{ display:none; }

/* Steps */
.ah_steps{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
  display: grid;
  gap: 8px;
}

.ah_steps li strong{ color: #ffcc00; }

/* Callouts */
.ah_callout{
  margin: 6px 24px 18px 24px;
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.ah_callout__title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.ah_callout__text{
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}

.ah_tip{
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* Actions pinned to bottom */
.ah_actions{
  position: relative;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.ah_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 950;
  color: #0b1445;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 18px 40px rgba(255,204,0,0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ah_btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(255,204,0,0.26);
}

.ah_btn--ghost{
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.ah_btn--ghost:hover{
  background: rgba(255,255,255,0.12);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991px){
  .access_help{ padding: 64px 0; }
  .ah_grid{ grid-template-columns: 1fr; }
  .access_help__title{ font-size: 2.05rem; }
}

@media (max-width: 575px){
  .access_help__title{ font-size: 1.8rem; }
}

/* ===== Online Casino App Section (v2) — CLEAN VERSION ===== */

.casino_app_section_v2{
  padding: 90px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.casino_app_section_v2 .container{
  max-width: 1180px;
}

/* ===== Header ===== */
.app2_header{
  text-align: center;
  max-width: 940px;
  margin: 0 auto 38px auto;
}

.app2_badges{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.app2_badge{
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 950;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: .92rem;
}

.app2_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.app2_title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.app2_subtitle{
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 1.08rem;
}

/* ===== Grid ===== */
.app2_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* ===== Cards (equal height) ===== */
.app2_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  overflow: hidden;
  padding: 22px;

  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ===== Media (app mockup) ===== */
.app2_media{
  border-radius: 18px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.app2_img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Text blocks ===== */
.app2_block{
  margin-bottom: 14px;
}

.app2_h3{
  margin: 0 0 10px 0;
  font-size: 1.55rem;
  font-weight: 950;
  color: #ffcc00;
}

.app2_p{
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

/* ===== Benefit list (NO grey icon squares, icons only) ===== */
.app2_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.app2_list li{
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
  position: relative;
}

.app2_list li:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,204,0,0.22);
}

/* optional: subtle gold accent line on the left */
.app2_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 3px;
  border-radius: 2px;
  background: #ffcc00;
  opacity: 0.55;
}

.app2_list li > div{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.app2_list li strong{
  display: block;
  line-height: 1.15;
}

.app2_list li span{
  display: block;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}

/* Icon (Lucide) — just the icon, centered */
.app2_icon{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app2_icon svg{
  width: 24px;
  height: 24px;
  display: block;
  stroke: #ffcc00;
  stroke-width: 2;
  fill: none;
}

/* ===== Store buttons pinned to bottom ===== */
.app2_stores{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.app2_store_img{
  height: 52px;
  width: auto;
  display: block;
  transition: transform .2s ease;
}

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

.app2_note{
  margin: 12px 0 0 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
  font-size: .92rem;
}

/* ===== Navigation KV grid ===== */
.app2_kv{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 10px;
}

.app2_kv_item{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.app2_kv_tag{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: .86rem;
  background: rgba(0,160,255,0.16);
  border: 1px solid rgba(0,160,255,0.22);
  margin-bottom: 8px;
}

.app2_kv_text{
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
}

/* ===== Install split ===== */
.app2_split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.app2_block--mini{
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.app2_steps{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

/* ===== Help callout ===== */
.app2_help{
  margin-top: 12px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,204,0,0.10);
  border: 1px solid rgba(255,204,0,0.18);
}

.app2_help_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.app2_help_text{
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 991px){
  .app2_grid{ grid-template-columns: 1fr; }
  .app2_title{ font-size: 2.05rem; }
  .app2_split{ grid-template-columns: 1fr; }
}

@media (max-width: 575px){
  .casino_app_section_v2{ padding: 64px 0; }
  .app2_title{ font-size: 1.85rem; }
  .app2_store_img{ height: 46px; }
}

/* ===== Payments Section ===== */
.pm_section{
  padding: 90px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color:#fff;
}

.pm_section .container{ max-width: 1180px; }

/* Header */
.pm_header{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.pm_badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom:14px;
}

.pm_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 950;
  font-size: .92rem;
}

.pm_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
}

.pm_title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.pm_subtitle{
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 1.08rem;
}

/* Intro cards */
.pm_intro{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 auto 22px auto;
  align-items: stretch;
}

.pm_intro_card{
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.34);
  padding: 18px 18px;
}

.pm_h3{
  margin: 0 0 10px 0;
  font-size: 1.55rem;
  font-weight: 950;
  color: #ffcc00;
}

.pm_p{
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.pm_note{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  font-size: .95rem;
}

/* Bullets */
.pm_bullets{
  list-style:none;
  padding:0;
  margin: 12px 0 0 0;
  display:grid;
  gap: 8px;
  color: rgba(255,255,255,0.84);
}

.pm_dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#ffcc00;
  display:inline-block;
  margin-right:10px;
  transform: translateY(1px);
}

/* Tabs + table card */
.pm_tabs_wrap{
  max-width: 920px;           
  margin: 0 auto;
}

.pm_tabs{
  display:flex;
  gap: 10px;
  justify-content:center;
  margin-bottom: 12px;
}

.pm_tab{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 950;
  cursor:pointer;
  transition: .2s ease;
}

.pm_tab.is-active{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
  color:#ffcc00;
}

.pm_table_card{
  border-radius: 20px;
  background: rgba(0,0,0,0.22);  
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.38);
  overflow:hidden;
}

.pm_table_head{
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.pm_table_title{
  font-weight: 950;
  font-size: 1.15rem;
  color: #ffcc00;
  margin-bottom: 6px;
}

.pm_table_hint{
  color: rgba(255,255,255,0.74);
  font-size: .95rem;
}

.pm_table_scroll{
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

.pm_table{
  width: 100%;
  border-collapse: collapse;
  min-width: 620px; 
}

.pm_table th,
.pm_table td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  vertical-align: middle;
}

.pm_table th{
  text-align:left;
  color: rgba(255,255,255,0.86);
  font-weight: 950;
  background: rgba(255,255,255,0.04);
}

.pm_col_limits{ width: 170px; text-align:right; }

.pm_limits{
  text-align:right;
  font-weight: 950;
  color: #fff;
  white-space: nowrap;
}

/* Method row */
.pm_method{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
}

.pm_name{
  font-weight: 950;
  color:#fff;
  line-height:1.15;
  font-size: 1.05rem;
}

.pm_meta{
  color: rgba(255,255,255,0.70);
  font-size: .92rem;
  margin-top: 3px;
}

/* ===== ICON FIX (local SVG files) ===== */
.pm_icon{
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);

  overflow: hidden;          
  position: relative;        
  display: block;
}

/* Center and scale logos consistently */
.pm_icon img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 70%;
  height: 70%;
  object-fit: contain;

  display: block;
  max-width: none;           
  max-height: none;
}

/* For wide “banner-like” logos (Bank Transfer / Skrill / Jeton, etc.) */
.pm_icon--wide img{
  width: 82%;
  height: 55%;
}

/* For extra-tall icons if needed */
.pm_icon--tall img{
  width: 58%;
  height: 86%;
}

.pm_disclaimer{
  margin: 12px 18px 18px 18px;
  color: rgba(255,255,255,0.70);
  font-size: .95rem;
  line-height: 1.6;
}

/* After-table info blocks */
.pm_after{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.pm_info{
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.34);
  padding: 18px 18px;
}

.pm_info--gold{
  background: rgba(255,204,0,0.08);
  border-color: rgba(255,204,0,0.18);
}

.pm_kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.pm_kv_item{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.pm_kv_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.pm_kv_text{
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 991px){
  .pm_title{ font-size: 2.05rem; }
  .pm_intro{ grid-template-columns: 1fr; }
  .pm_after{ grid-template-columns: 1fr; }
  .pm_tabs_wrap{ max-width: 100%; }
}

@media (max-width: 575px){
  .pm_section{ padding: 64px 0; }
  .pm_tab{ width: 100%; }
  .pm_tabs{ flex-direction: column; }
  .pm_col_limits{ width: 150px; }
}

/* ===== Trust / Security / Player Care Section ===== */
.trust_section{
  padding: 90px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.trust_section .container{ max-width: 1180px; }

/* Header */
.trust_header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.trust_badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom: 14px;
}

.trust_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 950;
  font-size: .92rem;
}

.trust_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
  color: #ffcc00;
}

.trust_title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.trust_subtitle{
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 1.08rem;
}

/* Grid */
.trust_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

/* Card */
.trust_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  padding: 20px;
  height: 100%;
  display:flex;
  flex-direction: column;
}

.trust_card--accent{
  background: rgba(255,204,0,0.08);
  border-color: rgba(255,204,0,0.18);
}

.trust_card--accent2{
  background: rgba(0,160,255,0.10);
  border-color: rgba(0,160,255,0.22);
}

.trust_card_top{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 10px;
}

.trust_h3{
  margin: 0 0 6px 0;
  font-size: 1.55rem;
  font-weight: 950;
  color: #ffcc00;
}

.trust_p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

/* Icon */
.trust_icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  display: block;
}

.trust_icon img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
  max-width: none;
  max-height: none;
}

/* Blocks */
.trust_block{ margin-top: 12px; }

.trust_h4{
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  font-weight: 950;
  color: rgba(255,255,255,0.92);
}

.trust_note{
  margin: 10px 0 0 0;
  color: rgba(255,255,255,0.72);
  font-size: .95rem;
  line-height: 1.6;
}

/* Lists */
.trust_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.86);
}

.trust_dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  display: inline-block;
  margin-right: 10px;
  transform: translateY(1px);
}

.trust_list li strong{ color: #fff; }

/* KV */
.trust_kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.trust_kv_item{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.trust_kv_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.trust_kv_text{
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
}

/* Callout */
.trust_callout{
  margin-top: 14px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,204,0,0.10);
  border: 1px solid rgba(255,204,0,0.18);
}

.trust_callout--dark{
  background: rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.12);
}

.trust_callout_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.trust_callout_text{
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

/* Support */
.trust_support{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}

.trust_support_item{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.trust_support_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.trust_support_text{
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

/* Pills */
.trust_pills{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.trust_pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: .92rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Providers */
.trust_provider_grid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust_provider{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

/* Steps */
.trust_steps{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px){
  .trust_title{ font-size: 2.05rem; }
  .trust_grid{ grid-template-columns: 1fr; }
  .trust_kv{ grid-template-columns: 1fr; }
}

/* ===== Trust / Security / Player Care Section ===== */
.trust_section{
  padding: 90px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color: #fff;
}

.trust_section .container{ max-width: 1180px; }

/* Header */
.trust_header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.trust_badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom: 14px;
}

.trust_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 950;
  font-size: .92rem;
}

.trust_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
  color: #ffcc00;
}

.trust_title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color: #ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.trust_subtitle{
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 1.08rem;
}

/* Grid */
.trust_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

/* Card */
.trust_card{
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.36);
  padding: 20px;
  height: 100%;
  display:flex;
  flex-direction: column;
}

.trust_card--accent{
  background: rgba(255,204,0,0.08);
  border-color: rgba(255,204,0,0.18);
}

.trust_card--accent2{
  background: rgba(0,160,255,0.10);
  border-color: rgba(0,160,255,0.22);
}

.trust_card_top{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 10px;
}

.trust_topcopy{ min-width: 0; } 
.trust_h3{
  margin: 0 0 6px 0;
  font-size: 1.55rem;
  font-weight: 950;
  color: #ffcc00;
}

.trust_p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

/* Icon container */
.trust_icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
}

.trust_svg{
  width: 28px;
  height: 28px;
  display: block;
  stroke: #ffcc00;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust_svg__thin{
  stroke-width: 1.8;
}

/* Blocks */
.trust_block{ margin-top: 12px; }

.trust_h4{
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  font-weight: 950;
  color: rgba(255,255,255,0.92);
}

.trust_note{
  margin: 10px 0 0 0;
  color: rgba(255,255,255,0.72);
  font-size: .95rem;
  line-height: 1.6;
}

/* Lists */
.trust_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.86);
}

.trust_dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcc00;
  display: inline-block;
  margin-right: 10px;
  transform: translateY(1px);
}

.trust_list li strong{ color: #fff; }

/* KV blocks */
.trust_kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.trust_kv_item{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.trust_kv_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.trust_kv_text{
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
}

/* Callout */
.trust_callout{
  margin-top: 14px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,204,0,0.10);
  border: 1px solid rgba(255,204,0,0.18);
}

.trust_callout--dark{
  background: rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.12);
}

.trust_callout_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.trust_callout_text{
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

/* Support cards */
.trust_support{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}

.trust_support_item{
  border-radius: 16px;
  padding: 12px;
  background: rgba(11,20,69,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}

.trust_support_title{
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 6px;
}

.trust_support_text{
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

/* Pills */
.trust_pills{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.trust_pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: .92rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Providers */
.trust_provider_grid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust_provider{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

/* Steps */
.trust_steps{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px){
  .trust_title{ font-size: 2.05rem; }
  .trust_grid{ grid-template-columns: 1fr; }
  .trust_kv{ grid-template-columns: 1fr; }
}

/* ===== FAQ Section ===== */
.faq_section{
  padding: 90px 0;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,160,255,0.14), transparent 60%),
    #0b1445;
  color:#fff;
}

.faq_section .container{ max-width: 1180px; }

/* Header */
.faq_header{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.faq_badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 14px;
}

.faq_badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 950;
  font-size: .92rem;
}

.faq_badge--gold{
  background: rgba(255,204,0,0.16);
  border-color: rgba(255,204,0,0.28);
  color:#ffcc00;
}

.faq_title{
  margin: 0 0 12px 0;
  font-size: 2.55rem;
  font-weight: 950;
  color:#ffcc00;
  line-height: 1.1;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.faq_subtitle{
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 1.08rem;
}

/* Grid (2 columns) */
.faq_grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

/* Accordion styling (bootstrap overrides) */
.faq_item{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.32);
  margin-bottom: 14px;
}

.faq_btn{
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  font-weight: 950;
  padding: 16px 16px;
  box-shadow: none !important;
}

.faq_btn:focus{
  border-color: rgba(255,204,0,0.35) !important;
  box-shadow: 0 0 0 .2rem rgba(255,204,0,0.15) !important;
}

.accordion-button:not(.collapsed){
  background: rgba(255,204,0,0.10) !important;
  color: #ffcc00 !important;
}

.accordion-button::after{
  filter: brightness(2);
}

.faq_body{
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  padding: 14px 16px 16px 16px;
}

.faq_body strong{ color:#fff; }

/* Responsive */
@media (max-width: 991px){
  .faq_title{ font-size: 2.05rem; }
  .faq_grid{ grid-template-columns: 1fr; }
}

/* ===== Official Footer ===== */
.gr_footer{
  padding: 70px 0 28px;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(255,204,0,0.10), transparent 55%),
    radial-gradient(800px 420px at 85% 30%, rgba(0,160,255,0.12), transparent 60%),
    #061035;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.gr_footer .container{ max-width: 1180px; }

.gr_footer_top{
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

/* Brand */
.gr_footer_logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}

.gr_footer_logo img{
  height: 44px;
  width: auto;
  display: block;
}

.gr_footer_text{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}

.gr_footer_text--small{
  font-size: .98rem;
  color: rgba(255,255,255,0.78);
}

.gr_footer_meta{
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.gr_footer_meta_item{
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.gr_footer_meta_label{
  display:block;
  font-weight: 950;
  color: #ffcc00;
  margin-bottom: 4px;
  font-size: .92rem;
}

.gr_footer_meta_value{
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
  font-size: .96rem;
}

/* Links */
.gr_footer_links{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gr_footer_h3{
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 950;
  color: #ffcc00;
}

.gr_footer_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.gr_footer_list a{
  color: rgba(255,255,255,0.84);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.20);
  width: fit-content;
  transition: .2s ease;
}

.gr_footer_list a:hover{
  color: #fff;
  border-bottom-color: rgba(255,204,0,0.55);
}

/* App */
.gr_footer_app{
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 55px rgba(0,0,0,0.32);
}

.gr_footer_stores{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.gr_footer_store img{
  height: 50px;
  width: auto;
  display:block;
  transition: transform .2s ease;
}

.gr_footer_store:hover img{
  transform: translateY(-2px);
}

.gr_footer_badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.gr_footer_chip{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 950;
  font-size: .9rem;
  color: rgba(255,255,255,0.90);
}

/* Disclaimer */
.gr_footer_disclaimer{
  margin-top: 22px;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
}

.gr_footer_disclaimer p{
  margin: 0 0 10px 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.gr_footer_disclaimer p:last-child{ margin-bottom: 0; }

.gr_footer_disclaimer strong{ color:#ffcc00; }

/* Bottom */
.gr_footer_bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.gr_footer_copy{
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.gr_footer_copy a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,204,0,0.45);
}

.gr_footer_copy a:hover{
  border-bottom-color: rgba(255,204,0,0.75);
}

.gr_footer_legal{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.70);
}

.gr_footer_legal a{
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: .2s ease;
}

.gr_footer_legal a:hover{ color:#fff; }

.gr_footer_sep{
  opacity: .5;
}

/* Responsive */
@media (max-width: 991px){
  .gr_footer_top{
    grid-template-columns: 1fr;
  }
  .gr_footer_links{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px){
  .gr_footer{ padding: 60px 0 22px; }
  .gr_footer_links{ grid-template-columns: 1fr; }
  .gr_footer_store img{ height: 46px; }
}

/* ===== Store badges: responsive fix (App section) ===== */
.app2_stores{
  display: flex;
  flex-wrap: wrap;              
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 10px;
}

.app2_store_link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  max-width: 100%;
  flex: 0 1 auto;
}

.app2_store_img{
  height: 52px;                 
  width: auto;
  max-width: 100%;              
  display: block;
  object-fit: contain;
}

@media (max-width: 520px){
  .app2_stores{
    flex-direction: column;
    align-items: flex-start;
  }

  .app2_store_link{
    width: 100%;
  }

  .app2_store_img{
    height: 50px;
    max-width: 260px;          
  }
}