:root {
    --color-main: #770c9d;
    --color-white: #fff;
    --color-black: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Philosopher", sans-serif;
}

html,
body {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.philosopher-regular {
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.philosopher-bold {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.philosopher-regular-italic {
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.philosopher-bold-italic {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: italic;
}

a {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none !important;
}


.pt-100 {
    padding: 75px 0px;
}

button,
input {
    border: 0;
    background: 0;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


header {
    background: #000;
    position: relative;
    padding: 12px 0px;
    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid #ffffff30;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0px auto;
    height: 100%;
    transition: 0.3s;
}

header .container .logo {
    position: relative;
}

.logo span img {
    width: 210px;
}

header .container .logo span:nth-of-type(1) {
    font-size: 25px;
    font-weight: 600;
}

header .container .mobile_nav {
    margin: 1px 5px 0;
    display: none;
}

header .container .mobile_nav .burger {
    width: 19px;
    height: 19px;
    position: relative;
    overflow: hidden;
}

header .container .mobile_nav .burger .mobile_nav__label {
    margin: -10px 5px;
    width: 135px;
    position: absolute;
}

header .container .mobile_nav .burger .stripe {
    height: 3px;
    background: #fff;
    position: absolute;
    transition: 0.2s ease;
}

header .container .mobile_nav .burger .top {
    right: 0;
    top: 0;
    width: 100%;
}

header .container .mobile_nav .burger .middle {
    left: 0;
    top: 0;
    margin: 7px 0;
    width: 100%;
}

header .container .mobile_nav .burger .bottom {
    right: 0;
    top: 0;
    margin: 14px 0;
    width: 100%;
}

header .container .head_nav {
    margin: 0 50px;
    width: 100%;
}

header .container .head_nav ul {
    text-align: center;
    margin: 0;
}

header .container .head_nav ul .visited a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 0;
    right: 0;
    top: 20px;
}

header .container .head_nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header .container .head_nav ul li a {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.8px;
    position: relative;
    color: #fff;
}

header .container .head_nav ul li a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background: #fff;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    right: 0;
    top: 20px;
}

header .container .head_nav ul li a:hover:after {
    width: 100%;
    left: 0;
}

.mobile_menu {
    background: black;
    width: 100%;
    top: 65px;
    left: 0;
    border-radius: 4px;
    position: absolute;
    display: none;
    overflow-y: auto;
    max-height: 100vh;
}

.mobile_menu:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #fdf2f2 transparent;
    margin: -10px 35px;
}

.mobile_menu nav {
    padding: 50px;
    position: relative;
    z-index: 1000;
    background: var(--color-black);
}

.mobile_menu nav ul .slide a {
    opacity: 1;
    position: relative;
    animation: hidecolor 0.8s ease;
}

.mobile_menu nav ul .slide a:before {
    content: "";
    position: absolute;
    background: #770c9d;
    width: 0%;
    height: 35px;
    animation: slide 0.8s ease;
}

.mobile_menu nav ul li {
    margin: 30px 0px;
}

.mobile_menu nav ul li a {
    opacity: 0;
    font-size: 25px;
    font-weight: 600;
    padding: 10px 0px;
    color: white;
}

@keyframes slide {
    0% {
        width: 0;
        padding: 0px 10px;
        margin: 0px -5px;
    }

    80% {
        width: 105%;
        padding: 0px 10px;
        margin: 0px -5px;
    }

    100% {
        width: 0;
        padding: 0 0;
    }
}

@keyframes hidecolor {
    0% {
        color: black;
    }

    75% {
        color: black;
    }

    100% {
        color: white;
    }
}

/* header css end */
/* header css end */


/* home section css start */
/* home section css start */

.home_section {
    padding: 110px 0px 70px 0px;
    background-image: url(..//images/bg1.jpg);
    background-size: cover;
    position: relative;
    /* z-index: 1; */
}

.home_content {
    position: relative;
}

.home_content .star_shape img {
    width: 90px;
    position: absolute;
    left: 215px;
    top: -110px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}


.home_section .home_content h1 {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.home_section .home_content h1 span {
    color: var(--color-main);
    font-weight: 700;
}

.home_section .home_content h5 {
    color: #fffafa;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.home_section .home_content .heading_line {
    max-width: 200px;
}

.home_section .home_content .line_shape {
    max-width: 2000;
}

.home_section .home_content p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffffe3;
    letter-spacing: 0.6px;
}

.image_section .circle_img img {
    width: 100%;
    height: 100%;
}

.image_section .circle_img img {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
    display: inline-block;
}

.apply_btn {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background: #770c9d;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.6s all ease;
    width: fit-content;
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.apply_btn:hover {
    background-color: var(--color-white);
    color: #000;
    border: 1px solid var(--color-main);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.home_section:after {
    position: absolute;
    content: '';
    background: url(../images/shape.svg) no-repeat;
    width: 100%;
    height: 180px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(-1);
    z-index: 1;
}

/* home section  end */
/* home section  end */


/* about section start */
/* about section start */

.about_section {
    background-image: url(..//images/bg2.jpg);
    background-size: cover;
    position: relative;
}


.hand_shape img {
    position: absolute;
    left: 50px;
    top: 53px;
    opacity: 0.5;
}

.hand_shape img {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
    display: inline-block;
}

.about_content h1 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: #770c9d;
}

.peragraph {
    font-size: 18px;
    font-weight: 400;
    color: #000000b0;
    line-height: 25px;
    letter-spacing: 0.6px;
}

.success_content {
    background: transparent;
    padding: 20px 15px;
    margin-bottom: 20px;
    border: 1px solid #80808038;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.about_img img {
    border-radius: 10px;
    width: 310px;
    height: 73vh;
    object-fit: cover;
}

.success_content h2 {
    font-size: 20px;
    font-weight: 600;
}

.success_content i {
    font-size: 37px;
    color: #770c9d;
    margin-bottom: 13px;
}

.main_heading_1 h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-black);
    position: relative;
}

.main_heading_1 img {
    max-width: 250px;
    object-fit: cover;
}

.line_two {
    color: var(--color-main);
}

/* about section end */
/* about section end */


/* service section start */
/* service section start */

.service_wrapper {
    /* background-image: url('../images//8306168.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden; */
    background-color: #1d1d25;
}

.as_service_img {
    position: relative;
}

.as_service_img .as_service_img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 150px;
}

.as_service_img:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    width: 207px;
    height: 651px;
    background-image: url('../images/service_shape.png');
    bottom: -35px;
}

.as_service_single .as_service_img:after {
    display: none;
}

.as_service_img .as_service_circle {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
}

.service_box {
    background-color: #161416;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 40px 30px 40px;
    margin-top: 20px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s linear;
    border: 1px solid #e6e9f330;
}

.service_box:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -135px 0 0 -135px;
    background-image: url(../images/circle.png);
    width: 271px;
    height: 270px;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
    z-index: -1;
    opacity: 0;
}

.service_box:hover:after {
    opacity: 1;
}

.service_box:hover {
    background: linear-gradient(188deg, #770c9d, #000000);
    cursor: pointer;
}

.service_box:hover .as_icon img {
    filter: invert(0%) sepia(3%) saturate(7480%) hue-rotate(18deg) brightness(87%) contrast(98%);
}

.as_icon img {
    max-width: 100%;
}

.service_box .subheading {
    margin: 22px 0 10px;
    font-size: 26px;
    position: relative;
    font-weight: 600;
    color: var(--color-white);
}

.service_box p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffffc7;
}

.service_box:hover p {
    color: var(--color-white);
}

.service_box:hover .subheading,
.as_service_box:hover p,
.as_service_box:hover .as_link {
    color: var(--color-white)
}

/* service section end */
/* service section end */


/* gallery section start */
/* gallery section start */

.gallery_box {
    background: #770c9d36;
    color: #333333;
    border-radius: 5px;
    margin-top: 15px !important;

}

.card-image {
    overflow: hidden;
}

.card-image img {
    padding: 5px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all linear 0.5s;
}

.card-image img:hover {
    transform: scale(1.2);
}

/* gallery section end */
/* gallery section end */


/* why choose css start */
/* why choose css start */

.whychoose_wrapper {
    /* background: var(--color-white); */
    background-image: url(..//images/why-choose.jpg);
    position: relative;
    z-index: 1;
}

.as_whychoose_wrapper .as_heading {
    color: #ffffff;
}

.as_whychoose_wrapper p {
    color: #ffffff;
}

.as_whychoose_box .as_number>span {
    font-size: 40px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #010000;
}

.as_whychoose_box img {
    width: 150px;
}

.as_whychoose_box h4 {
    font-size: 23px;
    font-weight: 600;
    margin: 22px 0 22px;
    text-align: center;
    color: #000;
}

.as_number {
    display: block;
    position: relative;
    margin: 0 auto;
}

.as_choose_ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.as_choose_ul li {
    display: inline-flex;
    width: 19.5%;
    justify-content: center;
    color: #ffffff;
}

/* why choose css end */
/* why choose css end */


/* feature_section start */
/* feature_section start */

.feature_section {
    background: linear-gradient(#000000b0, #000), url(..//images/afsfd.jpg);
    background-size: cover;
}

.feature_box {
    background: #161416;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    border: 1px solid #ffffff33;
    transition: 0.6s all ease;
    padding: 2rem 1rem;
    margin-top: 20px;
    border-radius: 10px;
}

.feature_box:hover {
    box-shadow: 8px 8px 24px #090e1457;
    transform: translateY(-5px);
    transform: scale(1.03);
    cursor: pointer;
    background: linear-gradient(188deg, #770c9d, #000000);
}

.feature_box .heading_img img {
    margin-top: 20px;
    width: 125px;
}

.feature_box .feature_img img {
    height: 135px;
    width: 135px !important;
    object-fit: contain;
    transition: 0.6s all ease;
    border-radius: 10px;
}

.feature_box h4 {
    font-size: 25px;
    position: relative;
    font-weight: 600;
    color: var(--color-white);
}

.feature_box h5 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffffc7;
}


/* feature_section end */
/* feature_section end */



/* pricing plan page start */
/* pricing plan page start */

.price_plan_section {
    background-color: #1d1d25;
    /* background-image: url(..//images/price.jpg);
    background-size: cover; */
}

.pricing_plan {
    padding: 0px 0px 40px 0px;
    position: relative;
    background: #fff;
    box-shadow: 0 12px 45px rgba(0, 0, 0, .08);
    z-index: 1;
    transition: all linear 0.4s;
    cursor: pointer;
    border-radius: 15px;
}

.pricing_plan:hover {
    margin-top: -15px;
}

.pricing_plan .price_plan {
    position: relative;
    z-index: 100;
    padding: 30px 20px 15px 20px;
}

.main_heading {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-main);
}

.pricing_plan .price_plan h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--color-main);
}

.pricing_plan .price_plan h6 {
    font-size: 18px;
    color: #000;
}

.plan_list li {
    font-size: 18px;
    margin-top: 16px;
    color: #000;
}

.plan_list li i {
    color: var(--color-main);
    font-size: 16px;
    padding-right: 5px;
}

.pricing_plan .price_plan:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80%;
    content: '';
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #760b99, black, #750b99);
}

.plan_list {
    margin-top: 40px;
    margin-bottom: 40px;
}

.main_innner_box {
    background: linear-gradient(203deg, #760b9a 20%, #490660 50%, #000000 100%);
}

.main_innner_box .plan_list ul li {
    color: #fff;
}

.main_innner_box .plan_list ul li i {
    color: #fff;
}

.bg_dark {
    background: #fff;
    color: var(--color-black);
}

/* pricing plan page end */
/* pricing plan page end */


/* testimonials_section start */
/* testimonials_section start */

.testimonials_section {
    background: linear-gradient(#00000017, #00000094), url(..//images/hero-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.review_box {
    background: #00000054;
    padding: 15px 15px;
    position: relative;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    cursor: pointer;
    border: 2px solid #efe5e53d;
}

.review_img {
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: transparent;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review_img:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border: 1px dashed #ffffff;
    content: '';
    border-radius: 50%;
    animation: slideDas 5s infinite linear;
}

@keyframes slideDas {
    100% {
        transform: rotate(360deg);
    }
}

.review_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.review_content {
    margin-top: 20px;
}

.review_content h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
}

.review_content h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
}

.review_content p {
    font-size: 17px;
    font-weight: 400;
    color: #ffffffd1;
}

.review_box::after {
    left: 45px !important;
}

.review_box::before,
.review_box::after {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 90px;
    margin: auto;
    width: 20px;
    content: '';
    background: url(../images/double_quote.png);
    height: 40px;
    background-size: cover;
}

/* testimonials_section end */
/* testimonials_section end */



/* get in Touch start */
/* get in Touch start */

.get_in_touch {
    background-image: url(..//images/getin.png);
    background-size: cover;
}

.get_in_touch_box {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 20px 20px;
    background: #f2fafb;
}

.get_in_touch_box i {
    font-size: 25px;
    color: #fff;
    height: 60px;
    width: 70px;
    background: red;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;

}

.get_in_touch_box label {
    font-size: 17px;
    font-weight: 500;
    color: #000000a1;
    margin-bottom: 7px;
}

.get_in_touch_box input {
    position: relative;
    width: 100%;
    border: none;
    border: 1px solid #770c9d7d;
    outline: none;
    padding: 12px;
    border-radius: 3px;
}


.get_in_touch_box textarea {
    background-color: transparent;
    width: 100%;
    font-size: 16px;
    padding: .375rem .75rem;
    outline: none;
    border: 1px solid #770c9d7d;
    border-radius: 3px;
}

.get_in_touch_box label {
    color: #282828;
}

.get_in_touch_box .form-control:focus {
    border-color: #770c9d;
}

.banner__inputlist select {
    width: 100%;
    padding: 14px 10px;
    outline: none;
    background: transparent;
    border: 0;
    border: 1px solid #770c9d7d;
    color: #888496;
    border-radius: 3px;
}

.banner__inputlist {
    position: relative;
}


/* get in touch end */
/* get in touch end */


/* footer section start */
/* footer section start */


footer {
    position: relative;
    background-image: url(../images/footer.jpg);
    background-size: cover;
}

.footer_box ul li a {
    background: var(--color-main);
    color: #fff;
    position: relative;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 4px;
    z-index: 1;
}

.footer_box ul li a:hover {
    border-radius: 50%;
}

.footer_box ul li a i {
    position: relative;
    z-index: 100;
}

.footer_box ul li a:hover:before {
    width: 100%;
    height: 100%;
}

.footer_box ul li {
    margin: 0px 10px;
}

.footer_box img {
    width: 250px;
}

.footer_box p {
    color: #ffffffd6;
}

.footer_quick_links ul li {
    margin-top: 8px;
}

.footer_quick_links ul li a {
    font-size: 17px;
    color: #ffffff;
    transition: 0.5s;
}

.footer_quick_links li i {
    color: var(--color-main);
    margin-right: 10px;
}

.footer_quick_links h5,
.footer_contact h5 {
    font-size: 22px;
    font-weight: 600;
}

.contact_info .icon {
    margin-right: 12px;
    background: #ffffffcf 0% 0% no-repeat padding-box;
    min-width: 38px;
    width: 38px;
    height: 38px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_info .icon i {
    color: var(--color-main);
}

.footer_quick_links ul li a:hover,
.contact_info .details p a:hover {
    color: #770c9d;
    padding-left: 5px;
}

.contact_info .details p {
    font-size: 16px;
    color: #ffffff;
}

.contact_info .details p a {
    color: #ffffff;
    transition: 0.5s;
}

.copy_bottom {
    background: var(--color-black);
    padding: 16px 0px;
    border-top: 1px solid #fdf9ff45;
}

.copy_bottom p {
    color: var(--color-white);
}

.copy_bottom p a {
    color: var(--color-white);
}

.map_box iframe {
    width: 100%;
    height: 70vh;

}

/* footer section end */
/* footer copy end */

.as_icon img {
    filter: brightness(0) invert(1);
    max-width: 80px;
}

.service_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px; /* можешь менять */
}

/* Online Casino Section */
.online-casino-section {
    background: #ffffff;
    position: relative;
}

.section-heading-modern h2 {
    font-size: 42px;
    font-weight: 600;
    color: #000;
}

.section-heading-modern h2 span {
    color: #770c9d;
}

.heading-divider {
    width: 160px;
    height: 4px;
    margin: 20px auto;
    background: linear-gradient(
        to right,
        transparent,
        #770c9d,
        transparent
    );
    position: relative;
}

.heading-divider::after {
    content: "✦";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
    color: #770c9d;
    font-size: 18px;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.online-casino-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.online-casino-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #770c9d;
    margin-top: 25px;
    margin-bottom: 10px;
}

.online-casino-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 767px) {
    .section-heading-modern h2 {
        font-size: 32px;
    }

    .online-casino-content h3 {
        font-size: 22px;
    }
}

/* Bonuses & Loyalty Section */
.bonuses-loyalty-section {
    background: #ffffff;
}

.bonus-card {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.highlight-card {
    background: linear-gradient(180deg, #ffffff, #f3ecf8);
    border: 2px solid #770c9d33;
    position: relative;
}

.bonus-badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background: #770c9d;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.bonus-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.welcome-offer {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px dashed #770c9d55;
}

.welcome-offer strong {
    display: block;
    font-size: 28px;
    color: #770c9d;
}

.welcome-offer span {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

.bonus-crab {
    color: #000;
    font-weight: 600;
}

.bonus-list {
    margin-top: 15px;
}

.bonus-list li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.bonus-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #770c9d;
}

.promo-list {
    margin-top: 20px;
}

.promo-list li {
    font-size: 16px;
    margin-bottom: 12px;
}

.promo-tag {
    display: inline-block;
    background: #770c9d1a;
    color: #770c9d;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-right: 8px;
}

.loyalty-note {
    margin-top: 20px;
    font-size: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 767px) {
    .bonus-card {
        margin-bottom: 30px;
    }
}

/* Top Games Section */
.top-games-section {
    background-color: #1d1d25;
}

/* Grid: 6 per row on desktop */
.top-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* Card */
.game-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* фиксированная форма карточки */
    background: linear-gradient(180deg, #14141b, #1f1f2b);
    border: 1px solid #ffffff22;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 30px;
    transform: translateZ(0);
}

/* Image (NO CROP) */
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
    transition: transform 0.45s ease;
}

/* Overlay */
.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.75));
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* Button */
.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #fff;
    background: #770c9d;
    border: 1px solid #ffffff20;
    box-shadow: rgba(119, 12, 157, 0.35) 0px 10px 25px;
}

/* Hover */
.game-card:hover img {
    transform: scale(1.04);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* Keyboard accessibility */
.game-card:focus {
    outline: none;
}

.game-card:focus-visible {
    outline: 2px solid #770c9d;
    outline-offset: 3px;
}

.game-card:focus-visible .game-overlay {
    opacity: 1;
}

/* Responsive: 4 per row */
@media (max-width: 1200px) {
    .top-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive: 3 per row */
@media (max-width: 992px) {
    .top-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive: 2 per row */
@media (max-width: 576px) {
    .top-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .game-btn {
        font-size: 15px;
        padding: 9px 16px;
    }
}

/* Gaming Experience Section */
.gaming-experience-section {
    background: #ffffff;
}

.experience-card {
    background: #f9f9fb;
    border-radius: 18px;
    padding: 35px 30px;
    border: 1px solid #e4e4ec;
    height: 100%;
    position: relative;
}

.experience-card.highlight {
    background: linear-gradient(180deg, #ffffff, #f3ecf8);
    border: 2px solid #770c9d33;
}

.experience-badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background: #1d1d25;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.experience-badge.online {
    background: #770c9d;
}

.experience-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #000;
}

.experience-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
    color: #770c9d;
}

.experience-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.experience-list {
    margin-top: 15px;
}

.experience-list li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.experience-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #770c9d;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.experience-tags li {
    background: #770c9d1a;
    color: #770c9d;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.experience-summary {
    background: #f6f6fa;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.experience-summary p {
    font-size: 18px;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 767px) {
    .experience-card {
        margin-bottom: 30px;
    }

    .experience-card h3 {
        font-size: 22px;
    }
}

/* Casino Banner Section */
.casino-banner-section {
    background: linear-gradient(180deg, #ffffff, #f4f1f8);
    padding: 80px 0;
}

.banner-content {
    max-width: 520px;
}

.banner-badge {
    display: inline-block;
    background: #770c9d;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.banner-content h2 span {
    color: #770c9d;
}

.banner-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.banner-bonus-box {
    background: #ffffff;
    border: 2px dashed #770c9d55;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.banner-bonus-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #770c9d;
}

.bonus-value {
    font-size: 18px;
    color: #000;
}

.bonus-value strong {
    font-size: 26px;
    color: #770c9d;
}

.banner-btn {
    padding: 12px 28px;
    font-size: 16px;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .casino-banner-section {
        padding: 60px 0;
    }

    .banner-content {
        text-align: center;
        margin: 0 auto 40px;
    }

    .banner-content h2 {
        font-size: 34px;
    }
}

/* Alternative Casino Banner */
.alt-banner {
    background: linear-gradient(180deg, #f8f8fb, #ffffff);
    padding: 90px 0;
}

.banner-badge.light {
    background: #1d1d25;
}

.banner-points {
    margin: 20px 0 30px;
    padding: 0;
}

.banner-points li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.banner-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #770c9d;
    font-weight: 600;
}

.banner-btn.secondary {
    background: #1d1d25;
    color: #fff;
    border: 1px solid transparent;
}

.banner-btn.secondary:hover {
    background: #770c9d;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .alt-banner {
        padding: 60px 0;
    }

    .banner-points {
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

.tech-banner .banner-features {
    margin-bottom: 30px;
}

.tech-banner .banner-btn {
    margin-top: 25px;
}

/* Slots Section */
.slots-section {
    background: #ffffff;
}

/* Highlights chips */
.slots-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.highlight-chip {
    background: #770c9d1a;
    color: #770c9d;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 22px;
    font-size: 14px;
    border: 1px solid #770c9d33;
}

/* Cards */
.slots-card {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    padding: 34px 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.slots-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.slots-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #770c9d;
    margin-top: 22px;
    margin-bottom: 10px;
}

.slots-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.slots-badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background: #1d1d25;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.slots-badge.alt {
    background: #770c9d;
}

/* Lists */
.slots-list {
    margin-top: 14px;
}

.slots-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.slots-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #770c9d;
    font-weight: 700;
}

/* Inline tag */
.tag {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #e1e1ea;
    color: #1d1d25;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    margin-right: 8px;
}

/* Note blocks */
.slots-note,
.provider-note {
    margin-top: 18px;
    background: #ffffff;
    border: 1px dashed #770c9d55;
    border-radius: 14px;
    padding: 16px 16px;
}

.slots-mini {
    margin-top: 16px;
}

/* Grid points */
.slots-grid-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.slot-point {
    background: #ffffff;
    border: 1px solid #e4e4ec;
    border-radius: 14px;
    padding: 16px 14px;
}

.slot-point-title {
    font-weight: 800;
    color: #1d1d25;
    margin-bottom: 6px;
}

.slot-point-text {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Provider tags */
.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.provider-tags li {
    background: #770c9d1a;
    color: #770c9d;
    border: 1px solid #770c9d33;
    padding: 7px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
}

/* Examples */
.slots-examples {
    margin-top: 12px;
}

.slots-examples li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.slots-examples li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #770c9d;
    font-weight: 900;
}

/* Tip */
.slots-tip {
    margin-top: 18px;
    background: linear-gradient(180deg, #ffffff, #f3ecf8);
    border: 1px solid #770c9d33;
    border-radius: 16px;
    padding: 16px 16px;
}

.tip-title {
    font-weight: 900;
    color: #770c9d;
    margin-bottom: 6px;
}

/* Wide section */
.slots-wide {
    background: #f6f6fa;
    border-radius: 18px;
    border: 1px solid #e4e4ec;
    padding: 34px 30px;
}

.slots-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.choose-item {
    background: #ffffff;
    border: 1px solid #e4e4ec;
    border-radius: 16px;
    padding: 18px 16px;
}

.choose-title {
    font-weight: 900;
    color: #1d1d25;
    margin-bottom: 10px;
}

.choose-item ul {
    margin: 0;
    padding-left: 18px;
}

.choose-item li {
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.slots-footer-note {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px dashed #770c9d55;
    color: #333;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .slots-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-grid-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slots-card {
        padding: 28px 22px;
    }

    .slots-card h3 {
        font-size: 22px;
    }

    .slots-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Table Games Section */
.table-games-section {
    background: #ffffff;
}

/* Highlights */
.table-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Cards */
.table-card {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    padding: 34px 30px;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.table-card.highlight {
    background: linear-gradient(180deg, #ffffff, #f3ecf8);
    border: 2px solid #770c9d33;
}

.table-badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background: #1d1d25;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
}

.table-badge.alt {
    background: #770c9d;
}

.table-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
}

.table-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #770c9d;
    margin-top: 22px;
    margin-bottom: 10px;
}

.table-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

/* Lists */
.table-list li {
    margin-bottom: 12px;
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.table-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #770c9d;
    font-weight: 800;
}

.table-mini {
    margin-top: 14px;
}

/* Notes */
.table-note,
.provider-note {
    margin-top: 18px;
    background: #ffffff;
    border: 1px dashed #770c9d55;
    border-radius: 14px;
    padding: 16px;
}

/* Live grid */
.live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.live-item {
    background: #ffffff;
    border: 1px solid #e4e4ec;
    border-radius: 14px;
    padding: 16px;
}

.live-title {
    font-weight: 900;
    margin-bottom: 6px;
}

/* Wide */
.table-wide {
    background: #f6f6fa;
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    padding: 34px 30px;
}

.table-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.table-footer-note {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px dashed #770c9d55;
}

/* Responsive */
@media (max-width: 991px) {
    .live-grid {
        grid-template-columns: 1fr;
    }

    .table-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .table-choose-grid {
        grid-template-columns: 1fr;
    }

    .table-card h3 {
        font-size: 22px;
    }
}

/* Login & Registration Section */
.login-registration-section {
    background: #ffffff;
}

/* Cards */
.login-card {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    padding: 34px 30px;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.login-card.highlight {
    background: linear-gradient(180deg, #ffffff, #f3ecf8);
    border: 2px solid #770c9d33;
}

.login-badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background: #1d1d25;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
}

.login-badge.alt {
    background: #770c9d;
}

.login-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
}

.login-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #770c9d;
    margin-top: 22px;
    margin-bottom: 10px;
}

.login-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

/* Lists */
.login-list li {
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.login-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #770c9d;
    font-weight: 800;
}

.login-steps {
    padding-left: 18px;
}

.login-steps li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.login-mini {
    margin-top: 14px;
}

/* Wide recovery block */
.login-wide {
    background: #f6f6fa;
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    padding: 34px 30px;
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.recovery-item {
    background: #ffffff;
    border: 1px solid #e4e4ec;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
}

.recovery-title {
    font-weight: 900;
    color: #770c9d;
    margin-bottom: 6px;
}

/* Notes */
.login-note {
    background: #ffffff;
    border: 1px dashed #770c9d55;
    border-radius: 14px;
    padding: 16px;
}

.login-footer-note {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px dashed #770c9d55;
    color: #333;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .recovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .recovery-grid {
        grid-template-columns: 1fr;
    }

    .login-card h3 {
        font-size: 22px;
    }
}

/* =========================
   Casino App Section
========================= */
.casino-app-section {
    background: #ffffff;
}

/* =========================
   Visual Card (App Image)
========================= */
.app-visual-card {
    background: #f9f9fb;
    border-radius: 20px;
    border: 1px solid #e4e4ec;
    padding: 30px;
    text-align: center;
}

.app-visual-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.app-visual-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.app-visual-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* =========================
   Content
========================= */
.app-content {
    position: relative;
}

.app-badge {
    display: inline-block;
    background: #770c9d;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.app-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}

.app-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: #770c9d;
    margin-top: 30px;
    margin-bottom: 14px;
}

.app-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

/* =========================
   Features List
========================= */
.app-features {
    margin-top: 24px;
}

.app-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* Icon wrapper */
.app-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f3ecf8;
    border: 1px solid #770c9d33;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Icon image */
.app-icon img {
    width: 22px;
    height: 22px;
    display: block;

    /* Force dark purple color */
    filter: brightness(0) saturate(100%)
            invert(19%) sepia(53%) saturate(4250%)
            hue-rotate(268deg) brightness(86%) contrast(98%);
}

.app-feature strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.app-feature p {
    font-size: 15px;
    margin: 4px 0 0;
    color: #555;
}

/* =========================
   Installation Blocks
========================= */
.app-install {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 10px;
}

.install-block {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 16px;
    padding: 18px;
}

.install-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* =========================
   Store Buttons
========================= */
.app-stores {
    display: flex;
    gap: 18px;
    margin-top: 26px;
}

.app-stores img {
    max-width: 160px;
    height: auto;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.app-stores img:hover {
    transform: translateY(-2px);
}

/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
    .app-install {
        grid-template-columns: 1fr;
    }

    .app-stores {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-content h3,
    .app-visual-text h3 {
        font-size: 22px;
    }

    .app-feature {
        gap: 14px;
    }
}

/* =========================
   Payment Methods Section
========================= */
.payment-methods-section {
    background: #ffffff;
    color: #222;
}

/* =========================
   Tabs
========================= */
.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.payment-tab {
    padding: 10px 24px;
    background: #f3f3f7;
    border: 1px solid #ddd;
    color: #333;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.payment-tab:hover {
    background: #ececf3;
}

.payment-tab.active {
    background: #770c9d;
    color: #fff;
    border-color: #770c9d;
}

/* =========================
   Tables Wrapper
========================= */
.payment-tables {
    display: flex;
    justify-content: center;
}

/* =========================
   Table
========================= */
.payment-table {
    display: none;
    max-width: 820px;
    width: 100%;
}

.payment-table.active {
    display: block;
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f9f9fb;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4e4ec;
}

.payment-table th,
.payment-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e4e4ec;
    font-size: 15px;
}

.payment-table th {
    background: #f0f0f6;
    font-weight: 700;
    color: #222;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

/* =========================
   Info Text
========================= */
.payment-info {
    max-width: 820px;
    margin: 40px auto 0;
    color: #444;
}

.payment-info h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.payment-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* =========================
   Responsive (Mobile)
========================= */
@media (max-width: 768px) {

    .payment-table table,
    .payment-table thead,
    .payment-table tbody,
    .payment-table th,
    .payment-table td,
    .payment-table tr {
        display: block;
    }

    .payment-table tr {
        margin-bottom: 12px;
        border-bottom: 1px solid #e4e4ec;
        padding-bottom: 8px;
    }

    .payment-table td {
        padding: 8px 14px;
    }

    .payment-table td::before {
        content: attr(data-label);
        font-weight: 700;
        display: block;
        margin-bottom: 4px;
        color: #770c9d;
        font-size: 13px;
        text-transform: uppercase;
    }
}

/* Extended Payment Info */
.payment-info-extended {
    max-width: 900px;
    margin: 50px auto 0;
    color: #333;
}

.payment-info-extended h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.payment-info-extended .lead-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

/* Grid layout */
.payment-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.payment-info-block {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    padding: 22px;
}

.payment-info-block h4 {
    font-size: 18px;
    font-weight: 800;
    color: #770c9d;
    margin-bottom: 10px;
}

.payment-info-block p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #444;
}

.payment-info-block ul {
    padding-left: 18px;
    margin: 0;
}

.payment-info-block li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-info-grid {
        grid-template-columns: 1fr;
    }

    .payment-info-extended h3 {
        font-size: 23px;
    }
}

/* Trust Hub Section */
.casino-trust-hub {
    background: #ffffff;
    color: #222;
}

.section-intro.wide {
    max-width: 860px;
    margin: 0 auto;
}

/* Grid */
.trust-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* Card */
.trust-card {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 22px;
    padding: 28px;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #770c9d;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 10px;
    color: #444;
}

.trust-card p:last-child {
    margin-bottom: 0;
}

/* Summary */
.trust-summary {
    max-width: 760px;
    margin: 50px auto 0;
    text-align: center;
}

.trust-summary p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Final Ville Section */
.ville-final-section {
    background: #ffffff;
    color: #222;
}

/* Intro width */
.section-intro.wide {
    max-width: 880px;
    margin: 0 auto;
}

/* Content blocks */
.ville-content {
    margin-top: 40px;
}

.ville-block {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 26px;
}

.ville-block h3 {
    font-size: 21px;
    font-weight: 800;
    color: #770c9d;
    margin-bottom: 12px;
}

.ville-block p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.ville-block p:last-child {
    margin-bottom: 0;
}

/* Highlight block */
.ville-block.highlight {
    background: linear-gradient(180deg, #f6f0fb, #ffffff);
    border-color: #d9c4ea;
}

/* Responsive */
@media (max-width: 991px) {
    .ville-block {
        padding: 24px;
    }
}

/* Equal height Ville cards */
.ville-content > .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.ville-block {
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 26px;

    flex: 1;
    display: flex;
    flex-direction: column;
}

.ville-block.highlight {
    flex: 1;
}

/* Providers Section */
.casino-providers-section {
    background: #ffffff;
}

.providers-grid {
    row-gap: 32px;
}

/* Provider Card */
.provider-card {
    height: 100%;
    background: #f9f9fb;
    border: 1px solid #e4e4ec;
    border-radius: 22px;
    padding: 28px;
    text-align: center;

    display: flex;
    flex-direction: column;
}

/* Logo */
.provider-card img {
    max-height: 60px;
    max-width: 180px;
    margin: 0 auto 20px;
    object-fit: contain;
}

/* Title */
.provider-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Description */
.provider-card p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
}

/* Games */
.provider-games {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #770c9d;
}

/* FAQ Section */
.casino-faq-section {
    background: #ffffff;
}

.faq-grid {
    row-gap: 24px;
}

/* FAQ Item */
.faq-item {
    border: 1px solid #e4e4ec;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #f9f9fb;
}

/* Question */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    font-size: 16.5px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    position: relative;
}

/* Icon */
.faq-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #770c9d;
    border-bottom: 2px solid #770c9d;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 22px;
}

.faq-answer p {
    padding-bottom: 18px;
    font-size: 15.5px;
    color: #444;
    line-height: 1.7;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(-135deg);
}

/* =========================
   Testimonials – HARD Mobile Fix
========================= */
@media (max-width: 768px) {

    .testimonials_section .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .review_box {
        width: 100%;
        max-width: 94%;
        padding: 24px 18px 22px;
        border-radius: 18px;
        text-align: center;
    }

    .review_box::before,
    .review_box::after {
        display: none !important;
        content: none !important;
    }

    .review_img {
        width: 78px;
        height: 78px;
        margin: 0 auto 12px;
    }

    .review_img::before {
        animation: none;
    }

    .review_img img {
        width: 70px;
        height: 70px;
    }

    .review_content {
        margin-top: 10px;
    }

    .review_content h4 {
        font-size: 18px;
        line-height: 1.2;
    }

    .review_content h6 {
        font-size: 14px;
        margin-bottom: 6px;
        opacity: 0.85;
    }

    .review_content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonials_section .swiper {
        padding-left: 0;
        padding-right: 0;
    }
}
