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

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

html,
body {
    width: 100%;
    overflow-x: hidden !important;
}

body{
    font-style: normal;
    font-weight: 400;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    background: linear-gradient(90deg,#320f90,#803fb1 33%,#803fb1 65%,#320f90);
    position: relative;
    box-sizing: border-box;
}

body:before,
body:after{
    background-image: url('../images/bg-grid-top.png');
    background-position: top;
    background-repeat: no-repeat;
    content: "";
    height: 260px;
    opacity: .6;
    position: fixed;
    width: 100%;
    z-index: -1;
}
body:before{
    top: -8px;

}
body:after{
    bottom: -8px;
    transform: rotate(180deg);
}

.link {
    cursor: pointer;
}

.no-scroll {
    overflow: hidden;
}

header{
    position: fixed;
    width: 100%;
    height: 80px;
    top: 10px;
    left: 0;
    background-color: transparent;
    z-index: 9;
}

.header_container{
    background-image: linear-gradient(to bottom, #e7f0ff 50%, #c8ddff);
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 14px 14px 24px 24px;
    box-shadow: 0 20px 40px 0 rgba(22, 3, 71, .25);
    box-sizing: border-box;
    content: " ";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) perspective(40px) rotateX(-1deg) translateZ(-1px);
    transform-origin: center;
    width: 1280px;
    z-index: -1;
    padding: 5px 40px;
}

.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-content: center;
    transform: perspective(40px) rotateX(1deg) translateZ(1px); /* Обратная трансформация */
    height: 100%;
}

.burger{
    display: none;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

nav ul{
    display: flex;
}

nav ul li{
    list-style-type: none;
}

nav ul li a{
    align-items: center;
    color: hsla(0, 0%, 100%, .8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 13px;
    font-size: 12px;
    font-weight: 700;
    max-width: max-content;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

nav ul li a img{
    height: 36px;
    width: auto;
}

nav ul li a p {
    color: #803fb1;
    font-size: 10px;
    font-weight: 700;
    margin: 5px 0 0;
}

nav ul li a:hover{
    background-color: #ccdaf2;
    border-radius: 12px;
    box-shadow: 0 1px 1px 0 hsla(0, 0%, 100%, .2), inset 0 1px 1px 0 rgba(98, 99, 95, .36);
}

.header_logo{
    height: 95px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0%);

}

.header_btns{
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn{
    border-radius: 23px;
    padding: 5px 20px 7px 20px;
    background-clip: padding-box;
    background: linear-gradient(to bottom, #f9e900 18%, #ffc200 75%);
    border: 3px solid #ccdaf2;
    cursor: pointer;
}

.btn.outline{
    background: transparent;
}

.btn>span,
.language_switcher span{
    color: #803fb1;
    font-weight: 700;
    height: 18px;
    text-align: center
}


.language_switcher{
    border-radius: 23px;
    padding: 5px 10px 7px 15px;
    border: 3px solid #ccdaf2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language_switcher img{
    width: 25px;
}

.mobile_nav{
    position: fixed;
    top: 0;
    left: -100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(50, 15, 144, .8) !important;
    border: 1px solid rgba(231, 240, 255, .8);
    border-left: 0;
    border-radius: 0 24px 24px 0;
    box-sizing: border-box;
    z-index: 9999999;
    width: 75%;
    height: 100%;
    transition: all .5s ease;
}

.mobile_nav._active{
    left: 0;
}

.mobile_nav .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: transparent;
    height: calc(100% - 40px) ;
    overflow-y: scroll;
    padding: 20px 20px 0;
    z-index: 1;
    gap: 40px;
}

.burger_close{
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

.mobile_logo{
    width: 165px;
}

.mobile_nav ul li{
    list-style-type: none;
    margin-bottom: 10px;
}

.mobile_nav ul li a{
    text-decoration: none;
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mobile_btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.mobile_btns .btn{
    width: 100%;
    padding: 15px 0;
    border-color: transparent;
}

.mobile_btns .btn.outline{
    border-color: #f9e900;
}

.mobile_btns .btn.outline span{
    color: #fff;
}

.mobile_btns .language_switcher{
    width: calc(100% - 30px);
    padding: 20px 15px;
    justify-content: space-between;
    background-color: rgba(31,6,55,.8);
    border: none;

}

.mobile_btns .language_switcher div{
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom_links{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bottom_links li{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    opacity: .7;
    text-align: center;
}

.copyright{
    color: #c298e3;
    font-size: 14px;
    font-weight: 500;
    margin-left: -20px;
    text-align: center;
    white-space: nowrap;
}

@media(max-width:1200px){
    header{
        top: 0;
    }

    .header_container{
        width: 102%;
        height: 80px;
    }

    .burger{
        display: flex;
    }

    nav ul {
        display: none;
    }


    .header_logo{
        left: 15%;
        top: 10px;
        height: 70px;
    }


}

@media(max-width:767px){
    .header_container{
        padding: 0 20px;
    }
    .header_logo{
        left: 20%;
        top: 20px;
        height: 55px;
        width: 90px;
    }

    .language_switcher{
        display: none;
    }

    .mobile_nav{
        width: 100%;
    }

    .mobile_nav .wrapper{
        justify-content: flex-start;
        gap: 20px;
    }
}

@media(max-width: 424px){
    .header_logo{
        left: 22%;
        top: 20px;
        height: 55px;
        width: 90px;
    }

    .header_btns .btn{
        padding: 8px 10px 8px 10px;
    }
}

@media(max-width: 374px){
    .header_container{
        padding: 0 10px;
    }
    .header_logo{
        left: 28%;
    }
}


.main_slider{
    width: 90%;
    max-width: 1280px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin: 100px auto 20px auto;
}

.slider_item{
    position: relative;
    border-image-slice: 0;
    border-image-source: linear-gradient(217deg, #fa58b9, #fef10a, #5cbd00, #00cbed);
    border-radius: 24px;
    border-style: solid;
    border-width: 2px;
}

.main_slider::before,
.mobile_slider::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(217deg, #fa58b9, #fef10a, #5cbd00, #00cbed);
    border-radius: 26px;
    z-index: -1;
    pointer-events: none;
}


.slider_item>img{
    width: 100%;
    border-radius: 24px;
    display: block;
}

.slider_item .slider_info{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    gap: 20px;
}

.slider_item .slider_info img{
    width: 60%;
}

.slider_item .slider_info button{
    color: #803fb1;
    font-weight: 700;
}
.swiper-pagination{
    position: relative !important;
    z-index: 1 !important;
}
.swiper-pagination-bullet {
    width: 40px !important;
    height: 5px !important;
    background-color: #000 !important;
    border-radius: 2px !important;
    border: none;
    opacity: .5 !important;
    transition: background-color 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: #ffc200 !important;
    transform: scale(1.2) !important;
    opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev{
    background: linear-gradient(to bottom, #f9e900 18%, #ffc200 75%), linear-gradient(to bottom, #ffc200, #f9e900), linear-gradient(to bottom, #ff57b5, #a423ff 75%);
    height: 40px !important;
    width: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
    z-index: 1 !important;

}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 25px;
    height: 25px;
    fill: #803fb1;
    z-index: 1 !important;
}

.mobile_slider{
    display: none;
    width: 95%;
    max-height: 440px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin: 100px auto 40px auto;
}


.mobile_slider .slider_item>img{
    border-radius: 24px;
    display: block;
    max-height: 430px;
}

.mobile_slider .slider_item{
    max-height: 450px
}

.mob-swiper-pagination{
    display: none;
    position: relative !important;
    margin: 0 auto !important;
    justify-content: center !important;
}

@media(max-width:1200px){
    .main_slider{
        width: 95%;
    }
}

@media(max-width: 767px){
    .main_slider,
    .swiper-pagination{
        display: none !important;
    }
}

@media(max-width: 600px){
    .mobile_slider{
        display: block;
    }

    .mob-swiper-pagination{
        display: flex;
    }

    .slider_item .slider_info{
        position: absolute;
        left: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        height: 95%;
        width: 100%;
        gap: 20px;
    }
}
.title{
    margin: 40px auto;
}

.title_main{
    margin-top: 120px;
}

.title h1{
    text-align: center;
    background-clip: text;
    color: #ffd94d;
    font-size: 30px;
    margin-bottom: 20px;
}

.title h2{
    text-align: center;
    background-clip: text;
    color: #ffd94d;
    font-size: 30px;
    margin-bottom: 20px;
}

.title p {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: 40%;
    display: block;
    margin: 0 auto;
}

.title .btn{
    display: block;
    margin: 20px auto;
    width: auto;
    border: 2px solid #ffd94d;
}

.game_container{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 1280px;
    width: 90%;
    margin: 20px auto;
}

.game_item{
    position: relative;
    border-radius: 10px;
    text-align: center;
}

.game_item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: 2px;
    border-radius: 10px;
    background: linear-gradient(217deg, #fa58b9, #fef10a, #5cbd00, #00cbed);
    z-index: -1;
    padding: 1px;
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.game_container img{
    width: 100%;
    border-radius: 10px;
}

.game_item .label{
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #cf2e14;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    margin: 0 2.5px;
    padding: 2px 6px;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 1;
}

.game_item .active_item{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: calc(100% - 5px);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
    visibility: hidden;
}

.game_item .active_item._active{
    display: flex;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

.game_item .active_item .btn{
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.game_item .active_item .btn span{
    font-size: 16px;
    font-weight: 400;
}

.title.live .btn{
    box-shadow: 0 15px 15px 0 rgba(22,3,71,.33), 0 0 30px 0 rgba(249,255,149,.27), inset 0 0 4px 0 #fff0ea;
}

.title.live .btn:hover{
    box-shadow: none;
}

.liveCasinoBanners {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.live_casino-promo{
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.liveCasinoBanners img{
    width: 100%;
}

@media(max-width: 769px){
    .game_container{
        grid-template-columns: repeat(4, 1fr);
    }
    .title p {
        width: 80%;
    }
}

@media(max-width: 767px){
    .game_container{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        width: 95%;
    }
    .live_casino-promo{
        width: 95%;
    }
    .liveCasinoBanners {
        grid-template-columns: repeat(2, 1fr)
    }

    .title p {
        width: calc(100% - 10px);
    }
}

.promotion_container{
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.promotion_container .wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.promotion_item{
    background: linear-gradient(326deg, #e7f0ff 80%, #dce9ff 34%);
    height: 100%;
    min-height: unset;
    overflow: inherit;
    position: relative;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    clip-path: polygon(8% 0px, 92% 0px, 100% 50%, 92% 100%, 8% 100%, 0px 50%);
}

.info_icon{
    position: absolute;
    right: 10%;
    top: 10px;
}

.image_wrapper{
    align-items: center;
    display: flex;
    filter: drop-shadow(0 10px 20px rgba(137,39,48,.4));
    height: calc(100% - 20px);
    padding: 10px 10px;
    width: 44%;
}

.image_wrapper img{
    align-items: center;
    background-image: url("../images/promo-1.jpeg");
    background-clip: padding-box;
    background-color: #000;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    min-height: 200px;
    justify-content: center;
    width: 100%;
    clip-path: polygon(16% 0px, 84% 0px, 100% 50%, 84% 100%, 16% 100%, 0px 50%);
    filter: url(#rounded4);
}

.promo_content{
    width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.promo_name{
    clip-path: polygon(8% 0px, 92% 0px, 100% 50%, 92% 100%, 8% 100%, 0px 50%);
    color: #803fb1;
    background-color: #ffc200;
    max-width: 100px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;

}

.promo_title{
    color: #803fb1;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.promo_info{
    color: #803fb1;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

.promo_btn{
    border: 2px solid #ccdaf2 ;
    border-radius: 18px;
    padding: 5px 8px;
    max-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.promo_btn span{
    color: #803fb1;
    font-size: 14px ;
    font-weight: 700;
    height: 18px;
    text-align: center;
    text-shadow: none;
}

.promo_btn svg{
    transform: translateY(1px);
    opacity: 0.8;
}

@media(max-width: 767px){
    .promotion_container{
        width: 95%;
    }
    .promotion_container .wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
}

footer{
    width: 90%;
    max-width: 1280px;
    margin: 40px auto 10px auto;
}

footer ul{
    width: 50%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul li {
    list-style-type: none;
}

footer ul li a{
    font-size: 12px;
    margin: 0;
    padding: 17px 0;
    position: relative;
    text-transform: capitalize;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.payment_methods {
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    position: relative;
}

@media(min-width:220px)and (max-width:576px) {
    .payment_methods {
        padding-left: 5px;
        padding-right: 5px
    }
}

@media(max-width:320px) {
    .payment_methods {
        padding-left: 0;
        padding-right: 0
    }
}

.payment_methods .title {
    background-color: #7739ae;
    color: hsla(0, 0%, 100%, .6);
    font-size: 12px;
    font-weight: 700;
    padding: 0 8px;
    position: absolute;
    text-transform: uppercase;
    top: -48px;
}

.payment_methods .methods {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

h1,
h2{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
}

.txt_button{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.txt_button .btn{
    padding: 15px 50px;
    border-radius: 25px;
    color: #24292d;
}

.content_item{
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.content_item h3{
    margin: 40px auto 20px auto;
    color: #fff;
}

.content_item .colored_text{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 21px 30px;
    position: relative;
    z-index: 1;
    margin: 20px 0;
}

.content_item .colored_text:after{
    background: #fff;
    border-radius: 12px;
    content: " ";
    height: 100%;
    left: 0;
    opacity: .1;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.content_item p{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: .8;
}

.content_item a{
    color: #ea2087;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table,
th,
td {
    border: 1px solid #ccc;
}

th,
td {
    padding: 8px;
}


.content_item  ul,
.content_item  ol {
    padding-left: 20px;
    color: #9698a1;
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0;
}

.content_item  ul li,
.content_item  ol li {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.5rem;
    color: #fff;
    font-size: 14px;
    opacity: .8;
}

.footer_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.footer_bottom a{
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer_bottom a svg{
    width: 24px;
    height: 24px;
    fill:#9698a1;
}
.footer_bottom p{
    font-weight: 700;
    font-size: 12px;
}

.footer_bottom .whatsapp{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_bottom .whatsapp img{
    height: 30px;
    width: 30px;
}

.footer_bottom .whatsapp span{
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
    white-space: nowrap;
}
@media(max-width: 767px){
    footer{
        width: 95%;
    }

    footer ul{
        width: 100%;
        flex-wrap: wrap;
    }

    .footer_bottom{
        flex-direction: column-reverse;
        gap: 20px;
    }
}
