: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;
    }
}
/* =========================================
   ABOUT SECTION
========================================= */

.wiesbaden-about-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(119, 12, 157, 0.07), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8f6fa 100%);
    overflow: hidden;
}

.wiesbaden-about-heading {
    max-width: 850px;
    margin: 0 auto 20px;
}

.wiesbaden-about-eyebrow,
.wiesbaden-about-small-title {
    display: inline-block;
    color: #770c9d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.wiesbaden-about-heading h2 {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
    color: #15131a;
}

.wiesbaden-about-heading h2 span {
    color: #770c9d;
}

.wiesbaden-about-heading > p {
    max-width: 760px;
    margin: 0 auto;
    color: #66616b;
    font-size: 18px;
    line-height: 1.75;
}


/* Main image */

.wiesbaden-about-image {
    position: relative;
    height: 100%;
    min-height: 570px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(25, 18, 30, 0.14);
}

.wiesbaden-about-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}

.wiesbaden-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(10, 8, 12, 0.78) 100%
    );
}

.wiesbaden-about-image-label {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 28px;
    color: #fff;
}

.wiesbaden-about-image-label span {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wiesbaden-about-image-label strong {
    font-size: 22px;
    font-weight: 600;
}


/* Main content */

.wiesbaden-about-main {
    height: 100%;
    padding: 48px;
    background: #fff;
    border: 1px solid rgba(119, 12, 157, 0.10);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(25, 18, 30, 0.07);
}

.wiesbaden-about-main h3 {
    margin: 0 0 25px;
    color: #17141a;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

.wiesbaden-about-main p {
    margin: 0 0 18px;
    color: #5f5a63;
    font-size: 17px;
    line-height: 1.8;
}

.wiesbaden-about-main p:last-child {
    margin-bottom: 0;
}


/* Facts */

.wiesbaden-about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.wiesbaden-about-fact {
    display: flex;
    gap: 16px;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #ece7ef;
    border-radius: 16px;
    transition: 0.3s ease;
}

.wiesbaden-about-fact:hover {
    transform: translateY(-4px);
    border-color: rgba(119, 12, 157, 0.25);
    box-shadow: 0 15px 35px rgba(25, 18, 30, 0.08);
}

.wiesbaden-about-fact-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119, 12, 157, 0.09);
    color: #770c9d;
    font-size: 20px;
}

.wiesbaden-about-fact span {
    display: block;
    margin-bottom: 3px;
    color: #8b858e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wiesbaden-about-fact strong {
    display: block;
    color: #18151a;
    font-size: 17px;
    line-height: 1.3;
}

.wiesbaden-about-fact p {
    margin: 7px 0 0;
    color: #77717a;
    font-size: 14px;
    line-height: 1.5;
}


/* Two gaming worlds */

.wiesbaden-about-worlds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.wiesbaden-about-world {
    position: relative;
    padding: 45px;
    border-radius: 24px;
    overflow: hidden;
}

.wiesbaden-about-world-dark {
    background:
        radial-gradient(circle at 100% 0%, rgba(119, 12, 157, 0.45), transparent 38%),
        #17141a;
    color: #fff;
}

.wiesbaden-about-world-light {
    background: #fff;
    border: 1px solid #e7e1ea;
    box-shadow: 0 20px 50px rgba(25, 18, 30, 0.07);
}

.wiesbaden-about-world-number {
    position: absolute;
    right: 28px;
    top: 15px;
    font-size: 90px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.06;
}

.wiesbaden-about-world-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 15px;
    background: #770c9d;
    color: #fff;
    font-size: 23px;
}

.wiesbaden-about-world-label {
    display: block;
    margin-bottom: 8px;
    color: #9d60b4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.wiesbaden-about-world h3 {
    margin: 0 0 18px;
    font-size: 31px;
    font-weight: 700;
}

.wiesbaden-about-world-light h3 {
    color: #18151a;
}

.wiesbaden-about-world p {
    font-size: 16px;
    line-height: 1.75;
}

.wiesbaden-about-world-dark p {
    color: rgba(255,255,255,0.72);
}

.wiesbaden-about-world-light p {
    color: #686169;
}

.wiesbaden-about-world ul {
    margin: 25px 0 30px;
    padding: 0;
}

.wiesbaden-about-world ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.wiesbaden-about-world ul li i {
    margin-top: 4px;
    color: #a54bc6;
}

.wiesbaden-about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #770c9d;
    font-weight: 700;
    transition: 0.3s ease;
}

.wiesbaden-about-world-dark .wiesbaden-about-link {
    color: #fff;
}

.wiesbaden-about-link:hover {
    gap: 15px;
    color: #9a21c6;
}


/* History */

.wiesbaden-about-history {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    gap: 28px;
    align-items: center;
    margin-top: 70px;
    padding: 42px;
    border-radius: 22px;
    background: #f0e9f3;
    border-left: 4px solid #770c9d;
}

.wiesbaden-about-history-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #770c9d;
    color: #fff;
    font-size: 24px;
}

.wiesbaden-about-history-content > span {
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.wiesbaden-about-history-content h3 {
    margin: 8px 0 15px;
    color: #18151a;
    font-size: 28px;
}

.wiesbaden-about-history-content p {
    margin: 0 0 12px;
    color: #625c64;
    font-size: 16px;
    line-height: 1.75;
}

.wiesbaden-about-history-content p:last-child {
    margin-bottom: 0;
}

.wiesbaden-about-history-year {
    padding-left: 25px;
    border-left: 1px solid rgba(119, 12, 157, 0.2);
}

.wiesbaden-about-history-year span {
    display: block;
    color: #770c9d;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
}

.wiesbaden-about-history-year small {
    display: block;
    margin-top: 9px;
    color: #665f68;
    font-size: 13px;
    line-height: 1.5;
}


/* Licence */

.wiesbaden-about-license {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
    margin-top: 25px;
    padding: 40px;
    background: #fff;
    border: 1px solid #e9e4eb;
    border-radius: 22px;
}

.wiesbaden-about-license-title {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.wiesbaden-about-license-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #17141a;
    color: #fff;
    font-size: 21px;
}

.wiesbaden-about-license-title span {
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.wiesbaden-about-license-title h3 {
    margin: 7px 0 0;
    color: #18151a;
    font-size: 24px;
    line-height: 1.3;
}

.wiesbaden-about-license-text p {
    margin: 0 0 14px;
    color: #625d64;
    font-size: 15px;
    line-height: 1.75;
}

.wiesbaden-about-license-text p:last-child {
    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 1199px) {

    .wiesbaden-about-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .wiesbaden-about-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {

    .wiesbaden-about-section {
        padding: 80px 0;
    }

    .wiesbaden-about-image,
    .wiesbaden-about-image img {
        min-height: 480px;
    }

    .wiesbaden-about-worlds {
        grid-template-columns: 1fr;
    }

    .wiesbaden-about-history {
        grid-template-columns: 65px 1fr;
    }

    .wiesbaden-about-history-year {
        grid-column: 2;
        padding: 20px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(119, 12, 157, 0.2);
    }

    .wiesbaden-about-license {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {

    .wiesbaden-about-heading h2 {
        font-size: 34px;
    }

    .wiesbaden-about-heading > p {
        font-size: 16px;
    }

    .wiesbaden-about-main,
    .wiesbaden-about-world {
        padding: 30px 25px;
    }

    .wiesbaden-about-main h3,
    .wiesbaden-about-world h3 {
        font-size: 27px;
    }

    .wiesbaden-about-facts {
        grid-template-columns: 1fr;
    }

    .wiesbaden-about-history {
        display: block;
        padding: 30px 25px;
    }

    .wiesbaden-about-history-icon {
        margin-bottom: 20px;
    }

    .wiesbaden-about-history-year {
        margin-top: 25px;
        padding-top: 20px;
    }

    .wiesbaden-about-license {
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .wiesbaden-about-section {
        padding: 65px 0;
    }

    .wiesbaden-about-image,
    .wiesbaden-about-image img {
        min-height: 400px;
    }

    .wiesbaden-about-heading h2 {
        font-size: 30px;
    }

    .wiesbaden-about-image-label {
        left: 20px;
        bottom: 20px;
    }

    .wiesbaden-about-license-title {
        flex-direction: column;
    }
}

/* =========================================
   CASINO OVERVIEW — DARK SECTION
========================================= */

.casino-overview-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(119, 12, 157, 0.22), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(119, 12, 157, 0.13), transparent 28%),
        #151319;
    overflow: hidden;
}

.casino-overview-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -300px;
    right: -180px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}


/* Heading */

.casino-overview-heading {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto 55px;
}

.casino-overview-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #b866d5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.casino-overview-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.casino-overview-heading h2 span {
    color: #a947ca;
}

.casino-overview-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
    line-height: 1.75;
}


/* Two worlds */

.casino-worlds-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.casino-world-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px;
    border-radius: 24px;
    overflow: hidden;
}

.casino-world-classic {
    background:
        linear-gradient(
            145deg,
            rgba(119, 12, 157, 0.19),
            rgba(255, 255, 255, 0.025) 55%
        ),
        #201d24;
    border: 1px solid rgba(177, 91, 208, 0.25);
}

.casino-world-machines {
    background: #1b191e;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.casino-world-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.casino-world-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #770c9d;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 10px 30px rgba(119, 12, 157, 0.25);
}

.casino-world-number {
    color: rgba(255, 255, 255, 0.07);
    font-size: 65px;
    line-height: 1;
    font-weight: 700;
}

.casino-world-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #b866d5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.casino-world-card > h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.casino-world-intro {
    min-height: 116px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.75;
}


/* Game list */

.casino-game-list {
    display: grid;
    gap: 12px;
    flex-grow: 1;
}

.casino-game-item {
    display: flex;
    gap: 15px;
    padding: 17px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 13px;
}

.casino-game-item-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(119, 12, 157, 0.17);
    color: #bb68d9;
    font-size: 15px;
}

.casino-game-item h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.casino-game-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.55;
}


/* Hours */

.casino-world-hours {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.casino-world-hours-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 43px;
    border-radius: 50%;
    background: #fff;
    color: #770c9d;
    font-size: 17px;
}

.casino-world-hours span {
    display: block;
    margin-bottom: 4px;
    color: #b866d5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.casino-world-hours p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
}


/* Orientation */

.casino-orientation {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding: 35px 38px;
    background: #fff;
    border-radius: 20px;
}

.casino-orientation-heading {
    margin-bottom: 27px;
}

.casino-orientation-heading > span {
    display: block;
    margin-bottom: 5px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.casino-orientation-heading h3 {
    margin: 0;
    color: #171419;
    font-size: 25px;
    font-weight: 700;
}

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

.casino-orientation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 22px;
    border-right: 1px solid #e8e4e9;
}

.casino-orientation-item:first-child {
    padding-left: 0;
}

.casino-orientation-item:last-child {
    border-right: 0;
}

.casino-orientation-item > i {
    color: #770c9d;
    font-size: 21px;
}

.casino-orientation-item span {
    display: block;
    margin-bottom: 3px;
    color: #1a171c;
    font-size: 15px;
    font-weight: 700;
}

.casino-orientation-item p {
    margin: 0;
    color: #777078;
    font-size: 13px;
    line-height: 1.45;
}


/* Info note */

.casino-overview-note {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 23px;
    margin-top: 25px;
    padding: 35px 38px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.casino-overview-note-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(119, 12, 157, 0.18);
    color: #bc6ad9;
    font-size: 21px;
}

.casino-overview-note h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.casino-overview-note p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.7;
}

.casino-overview-note p:last-child {
    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 1199px) {

    .casino-overview-heading h2 {
        font-size: 42px;
    }

    .casino-orientation-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }

    .casino-orientation-item:nth-child(2) {
        border-right: 0;
    }

    .casino-orientation-item:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 991px) {

    .casino-overview-section {
        padding: 80px 0;
    }

    .casino-worlds-grid {
        grid-template-columns: 1fr;
    }

    .casino-world-intro {
        min-height: auto;
    }
}

@media (max-width: 767px) {

    .casino-overview-heading h2 {
        font-size: 34px;
    }

    .casino-overview-heading p {
        font-size: 16px;
    }

    .casino-world-card {
        padding: 30px 25px;
    }

    .casino-world-card > h3 {
        font-size: 27px;
    }

    .casino-orientation {
        padding: 30px 25px;
    }

    .casino-orientation-items {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .casino-orientation-item,
    .casino-orientation-item:first-child,
    .casino-orientation-item:nth-child(3) {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid #e8e4e9;
    }

    .casino-orientation-item:last-child {
        border-bottom: 0;
    }

    .casino-overview-note {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .casino-overview-section {
        padding: 65px 0;
    }

    .casino-overview-heading h2 {
        font-size: 30px;
    }

    .casino-world-top {
        margin-bottom: 20px;
    }

    .casino-world-number {
        font-size: 50px;
    }

    .casino-game-item {
        padding: 15px;
    }
}
/* =========================================
   GAMES OVERVIEW — LIGHT SECTION
========================================= */

.games-overview-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(119, 12, 157, 0.07), transparent 28%),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.games-overview-heading {
    max-width: 820px;
    margin: 0 auto 55px;
}

.games-overview-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.games-overview-heading h2 {
    margin: 0 0 18px;
    color: #171419;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.games-overview-heading h2 span {
    color: #770c9d;
}

.games-overview-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #686169;
    font-size: 17px;
    line-height: 1.7;
}


/* Grid */

.games-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Card */

.game-overview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 30px 25px 24px;
    background: #faf9fb;
    border: 1px solid #ebe6ed;
    border-radius: 18px;
    transition: 0.3s ease;
}

.game-overview-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(119, 12, 157, 0.22);
    box-shadow: 0 18px 40px rgba(25, 18, 30, 0.08);
}


/* Icon */

.game-overview-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: rgba(119, 12, 157, 0.09);
    color: #770c9d;
    font-size: 21px;
}


/* Text */

.game-overview-content {
    flex-grow: 1;
}

.game-overview-type {
    display: block;
    margin-bottom: 7px;
    color: #9b63ae;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.game-overview-content h3 {
    margin: 0 0 12px;
    color: #19161b;
    font-size: 23px;
    font-weight: 700;
}

.game-overview-content p {
    margin: 0;
    color: #716a73;
    font-size: 15px;
    line-height: 1.65;
}


/* Location */

.game-overview-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid #e9e4eb;
    color: #5f5861;
    font-size: 13px;
    font-weight: 600;
}

.game-overview-location i {
    color: #770c9d;
    font-size: 12px;
}


/* Make last card visually balanced */

.game-overview-card:last-child {
    grid-column: span 2;
}


/* Responsive */

@media (max-width: 1199px) {

    .games-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-overview-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 991px) {
	

    .games-overview-section {
        padding: 80px 0;
    }

    .games-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-overview-heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .games-overview-heading h2 {
        font-size: 34px;
    }

    .games-overview-heading p {
        font-size: 16px;
    }

    .game-overview-card {
        min-height: auto;
    }
}

@media (max-width: 575px) {

    .games-overview-section {
        padding: 65px 0;
    }

    .games-overview-grid {
        grid-template-columns: 1fr;
    }

    .games-overview-heading h2 {
        font-size: 30px;
    }

    .game-overview-card {
        padding: 25px 22px;
    }
}
/* =========================================
   SLOTS & AUTOMATENSPIEL — DARK SECTION
========================================= */

.slots-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 5% 20%, rgba(119, 12, 157, 0.24), transparent 28%),
        radial-gradient(circle at 95% 80%, rgba(119, 12, 157, 0.14), transparent 30%),
        #151319;
    overflow: hidden;
}


/* Heading */

.slots-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.slots-eyebrow,
.slots-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.slots-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.slots-heading h2 span {
    color: #ad50cd;
}

.slots-heading p {
    max-width: 770px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    line-height: 1.75;
}


/* Image */

.slots-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slots-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    object-fit: cover;
}

.slots-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 30%,
        rgba(10, 8, 12, 0.88) 100%
    );
}

.slots-image-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.slots-image-stat {
    padding: 18px 20px;
    background: rgba(19, 17, 21, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.slots-image-value {
    display: block;
    color: #fff;
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
}

.slots-image-label {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}


/* Main Card */

.slots-main-card {
    height: 100%;
    padding: 45px;
    background: #201d24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.slots-main-card h3 {
    margin: 0 0 23px;
    color: #fff;
    font-size: 34px;
    line-height: 1.25;
}

.slots-main-card > p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.8;
}


/* Hours */

.slots-hours {
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    gap: 17px;
    align-items: center;
    margin-top: 30px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.slots-hours-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #770c9d;
    color: #fff;
}

.slots-hours-item span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.slots-hours-item strong {
    color: #fff;
    font-size: 15px;
}


/* Types */

.slots-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.slots-type-card {
    position: relative;
    min-height: 295px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    transition: 0.3s ease;
}

.slots-type-card:hover {
    transform: translateY(-5px);
    background: rgba(119, 12, 157, 0.09);
    border-color: rgba(173, 80, 205, 0.27);
}

.slots-type-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 13px;
    background: rgba(119, 12, 157, 0.18);
    color: #be70d9;
    font-size: 20px;
}

.slots-type-card > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 35px;
    font-weight: 700;
}

.slots-type-card h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 22px;
}

.slots-type-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 14px;
    line-height: 1.7;
}


/* Payout */

.slots-payout-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 40px;
    margin-top: 65px;
    padding: 42px;
    background: #fff;
    border-radius: 22px;
}

.slots-payout-intro > span {
    display: block;
    margin-bottom: 7px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.slots-payout-intro h3 {
    margin: 0 0 13px;
    color: #171419;
    font-size: 26px;
    line-height: 1.3;
}

.slots-payout-intro p {
    margin: 0;
    color: #746e75;
    font-size: 14px;
    line-height: 1.6;
}

.slots-payout-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.slots-payout-stat {
    padding: 5px 24px;
    border-left: 1px solid #e7e2e9;
}

.slots-payout-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(119, 12, 157, 0.09);
    color: #770c9d;
}

.slots-payout-stat strong {
    display: block;
    color: #19161b;
    font-size: 20px;
}

.slots-payout-stat span {
    display: block;
    margin-top: 4px;
    color: #7a737b;
    font-size: 13px;
    line-height: 1.4;
}


/* TouchBet */

.slots-touchbet {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 45px;
    margin-top: 26px;
    padding: 40px;
    background:
        linear-gradient(
            135deg,
            rgba(119, 12, 157, 0.15),
            rgba(255, 255, 255, 0.025)
        ),
        #201d24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
}

.slots-touchbet-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.slots-touchbet-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
}

.slots-touchbet-heading span {
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.slots-touchbet-heading h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 27px;
}

.slots-touchbet-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

.slots-touchbet-games {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
}

.slots-touchbet-game {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
}

.slots-touchbet-game i {
    color: #bc69d8;
    font-size: 11px;
}


/* Entry */

.slots-entry-note {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 23px;
    margin-top: 26px;
    padding: 38px 40px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
}

.slots-entry-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(119, 12, 157, 0.18);
    color: #bd6bd9;
    font-size: 21px;
}

.slots-entry-content > span {
    display: block;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.slots-entry-content h3 {
    margin: 7px 0 14px;
    color: #fff;
    font-size: 23px;
}

.slots-entry-content p {
    margin: 0 0 11px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 15px;
    line-height: 1.72;
}

.slots-entry-content p:last-child {
    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 1199px) {

    .slots-heading h2 {
        font-size: 42px;
    }

    .slots-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-payout-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .slots-section {
        padding: 80px 0;
    }

    .slots-image,
    .slots-image img {
        min-height: 500px;
    }

    .slots-touchbet {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .slots-heading h2 {
        font-size: 34px;
    }

    .slots-heading p {
        font-size: 16px;
    }

    .slots-main-card {
        padding: 30px 25px;
    }

    .slots-main-card h3 {
        font-size: 28px;
    }

    .slots-hours {
        grid-template-columns: 46px 1fr;
    }

    .slots-hours-item:last-child {
        grid-column: 2;
    }

    .slots-payout-stats {
        grid-template-columns: 1fr;
    }

    .slots-payout-stat {
        padding: 18px 0;
        border-left: 0;
        border-top: 1px solid #e7e2e9;
    }

    .slots-entry-note {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .slots-section {
        padding: 65px 0;
    }

    .slots-heading h2 {
        font-size: 30px;
    }

    .slots-types {
        grid-template-columns: 1fr;
    }

    .slots-image,
    .slots-image img {
        min-height: 420px;
    }

    .slots-image-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .slots-payout-panel,
    .slots-touchbet {
        padding: 28px 23px;
    }
}
/* =========================================
   JACKPOTS — LIGHT SECTION
========================================= */

.jackpots-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(119, 12, 157, 0.07), transparent 27%),
        radial-gradient(circle at 92% 85%, rgba(119, 12, 157, 0.05), transparent 26%),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.jackpots-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.jackpots-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.jackpots-heading h2 {
    margin: 0 0 20px;
    color: #171419;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.jackpots-heading h2 span {
    color: #770c9d;
}

.jackpots-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #6d666f;
    font-size: 17px;
    line-height: 1.75;
}


/* Jackpot Types */

.jackpots-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.jackpot-type-card {
    position: relative;
    padding: 34px 30px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 20px;
    transition: 0.3s ease;
}

.jackpot-type-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(119, 12, 157, 0.22);
    box-shadow: 0 20px 45px rgba(25, 18, 30, 0.08);
}

.jackpot-type-featured {
    background:
        linear-gradient(
            145deg,
            rgba(119, 12, 157, 0.08),
            #ffffff 55%
        );
    border-color: rgba(119, 12, 157, 0.18);
}

.jackpot-type-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.jackpot-type-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(119, 12, 157, 0.10);
    color: #770c9d;
    font-size: 21px;
}

.jackpot-type-number {
    color: rgba(119, 12, 157, 0.08);
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
}

.jackpot-type-label {
    display: block;
    margin-bottom: 8px;
    color: #9860ab;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.jackpot-type-card h3 {
    margin: 0 0 17px;
    color: #1b171d;
    font-size: 25px;
    font-weight: 700;
}

.jackpot-type-card > p {
    margin: 0 0 15px;
    color: #716a73;
    font-size: 15px;
    line-height: 1.72;
}

.jackpot-type-note {
    display: flex;
    gap: 10px;
    margin-top: 23px;
    padding-top: 19px;
    border-top: 1px solid #e8e3ea;
    color: #645d66;
    font-size: 13px;
    line-height: 1.55;
}

.jackpot-type-note i {
    margin-top: 3px;
    color: #770c9d;
}


/* Mystery Steps */

.mystery-explainer {
    margin-top: 65px;
    padding: 42px;
    background: #171419;
    border-radius: 23px;
}

.mystery-explainer-head {
    margin-bottom: 32px;
}

.mystery-explainer-head span {
    display: block;
    margin-bottom: 6px;
    color: #be70d9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.mystery-explainer-head h3 {
    margin: 0;
    color: #fff;
    font-size: 30px;
}

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

.mystery-step {
    display: flex;
    gap: 15px;
    padding: 5px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.mystery-step:first-child {
    padding-left: 0;
}

.mystery-step:last-child {
    border-right: 0;
}

.mystery-step-number {
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #770c9d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.mystery-step h4 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 16px;
}

.mystery-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
}


/* Levels */

.jackpot-levels {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 45px;
    margin-top: 27px;
    padding: 42px;
    background: #f5f1f7;
    border-radius: 22px;
}

.jackpot-levels-intro > span {
    display: block;
    margin-bottom: 7px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.jackpot-levels-intro h3 {
    margin: 0 0 15px;
    color: #19161b;
    font-size: 27px;
    line-height: 1.3;
}

.jackpot-levels-intro p {
    margin: 0;
    color: #6d666f;
    font-size: 15px;
    line-height: 1.72;
}

.jackpot-levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.jackpot-level {
    padding: 23px 20px;
    background: #fff;
    border: 1px solid #e7e1e9;
    border-radius: 15px;
}

.jackpot-level-mega {
    border-color: rgba(119, 12, 157, 0.26);
    background:
        linear-gradient(
            145deg,
            rgba(119, 12, 157, 0.07),
            #fff
        );
}

.jackpot-level-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 11px;
    background: rgba(119, 12, 157, 0.09);
    color: #770c9d;
}

.jackpot-level > span {
    display: block;
    margin-bottom: 6px;
    color: #877f88;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.jackpot-level strong {
    display: block;
    color: #1b171d;
    font-size: 20px;
}

.jackpot-level p {
    margin: 10px 0 0;
    color: #777078;
    font-size: 13px;
    line-height: 1.55;
}


/* Systems */

.jackpot-systems {
    margin-top: 27px;
    padding: 38px 40px;
    background: #fff;
    border: 1px solid #e8e3ea;
    border-radius: 22px;
}

.jackpot-systems-heading {
    max-width: 680px;
    margin-bottom: 28px;
}

.jackpot-systems-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.jackpot-systems-heading h3 {
    margin: 0 0 10px;
    color: #1a171c;
    font-size: 25px;
}

.jackpot-systems-heading p {
    margin: 0;
    color: #716a73;
    font-size: 14px;
    line-height: 1.65;
}

.jackpot-systems-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.jackpot-system-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 16px;
    background: #faf8fb;
    border: 1px solid #ece7ee;
    border-radius: 12px;
    color: #49434b;
    font-size: 13px;
    font-weight: 600;
}

.jackpot-system-item i {
    color: #770c9d;
}


/* Live Data */

.jackpot-live-info {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 24px;
    margin-top: 27px;
    padding: 38px 40px;
    background:
        linear-gradient(
            135deg,
            rgba(119, 12, 157, 0.07),
            #faf8fb
        );
    border: 1px solid rgba(119, 12, 157, 0.14);
    border-radius: 22px;
}

.jackpot-live-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
    font-size: 21px;
}

.jackpot-live-content > span {
    display: block;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.jackpot-live-content h3 {
    margin: 7px 0 14px;
    color: #19161b;
    font-size: 24px;
}

.jackpot-live-content p {
    margin: 0 0 11px;
    color: #6c656e;
    font-size: 15px;
    line-height: 1.7;
}

.jackpot-live-content p:last-child {
    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 1199px) {

    .jackpots-heading h2 {
        font-size: 42px;
    }

    .mystery-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }

    .mystery-step:nth-child(2) {
        border-right: 0;
    }

    .mystery-step:nth-child(3) {
        padding-left: 0;
    }

    .jackpot-levels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .jackpots-section {
        padding: 80px 0;
    }

    .jackpots-types {
        grid-template-columns: 1fr;
    }

    .jackpot-systems-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .jackpots-heading h2 {
        font-size: 34px;
    }

    .jackpots-heading p {
        font-size: 16px;
    }

    .mystery-explainer,
    .jackpot-levels,
    .jackpot-systems,
    .jackpot-live-info {
        padding: 30px 25px;
    }

    .mystery-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mystery-step,
    .mystery-step:first-child,
    .mystery-step:nth-child(3) {
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .mystery-step:last-child {
        border-bottom: 0;
    }

    .jackpot-levels-grid {
        grid-template-columns: 1fr;
    }

    .jackpot-live-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {

    .jackpots-section {
        padding: 65px 0;
    }

    .jackpots-heading h2 {
        font-size: 30px;
    }

    .jackpot-type-card {
        padding: 28px 23px;
    }

    .jackpot-systems-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TABLE GAMES — DARK SECTION
========================================= */

.table-games-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(119, 12, 157, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(119, 12, 157, 0.11),
            transparent 28%
        ),
        #151319;
    overflow: hidden;
}


/* Heading */

.table-games-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.table-games-eyebrow,
.table-games-small-title {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.table-games-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.table-games-heading h2 span {
    color: #ad50cd;
}

.table-games-heading p {
    max-width: 770px;
    margin: 0 auto;
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    line-height: 1.75;
}


/* Main block */

.table-games-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}


/* Image */

.table-games-image {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 24px;
}

.table-games-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}

.table-games-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.03) 30%,
            rgba(10,8,12,0.92) 100%
        );
}

.table-games-image-info {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 30px;
}

.table-games-image-info > span {
    display: block;
    margin-bottom: 7px;
    color: #d88af2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.table-games-image-info h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 27px;
}

.table-games-image-info p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}


/* Main text */

.table-games-intro {
    padding: 44px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
}

.table-games-intro h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 32px;
    line-height: 1.28;
}

.table-games-intro > p {
    margin: 0 0 17px;
    color: rgba(255,255,255,0.63);
    font-size: 16px;
    line-height: 1.78;
}

.table-games-intro-note {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
    background: rgba(119,12,157,0.12);
    border: 1px solid rgba(187,96,217,0.17);
    border-radius: 13px;
}

.table-games-intro-note i {
    margin-top: 4px;
    color: #bd6bd9;
}

.table-games-intro-note p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.6;
}


/* Game Cards */

.table-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.table-game-card {
    padding: 32px 28px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 19px;
    transition: 0.3s ease;
}

.table-game-card-highlight {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.16),
            rgba(255,255,255,0.03)
        );
    border-color: rgba(183,90,216,0.22);
}

.table-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(183,90,216,0.28);
}

.table-game-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.table-game-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
    font-size: 21px;
}

.table-game-card-top > span {
    color: rgba(255,255,255,0.08);
    font-size: 43px;
    font-weight: 700;
}

.table-game-type {
    margin-bottom: 7px;
    color: #b766d3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.table-game-card h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 25px;
}

.table-game-card > p {
    min-height: 130px;
    margin: 0;
    color: rgba(255,255,255,0.57);
    font-size: 14px;
    line-height: 1.7;
}


/* Principle */

.table-game-principle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.table-game-principle span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.40);
    font-size: 11px;
    text-transform: uppercase;
}

.table-game-principle strong {
    color: #fff;
    font-size: 15px;
}

.table-game-principle > i {
    color: #bd6bd9;
    font-size: 20px;
}


/* List */

.table-game-card ul {
    margin: 0;
    padding: 0;
}

.table-game-card ul li {
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.table-game-card ul li:last-child {
    margin-bottom: 0;
}

.table-game-card ul li i {
    margin-top: 4px;
    color: #bd6bd9;
    font-size: 10px;
}


/* Comparison */

.table-games-comparison {
    margin-top: 65px;
    padding: 40px;
    background: #fff;
    border-radius: 22px;
}

.table-games-comparison-heading {
    max-width: 690px;
    margin-bottom: 30px;
}

.table-games-comparison-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.table-games-comparison-heading h3 {
    margin: 0 0 10px;
    color: #19161b;
    font-size: 27px;
}

.table-games-comparison-heading p {
    margin: 0;
    color: #706970;
    font-size: 14px;
    line-height: 1.65;
}


/* Comparison table */

.table-games-comparison-table {
    overflow: hidden;
    border: 1px solid #e8e3e9;
    border-radius: 15px;
}

.table-games-comparison-row {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.7fr 1fr;
    align-items: center;
}

.table-games-comparison-row > div {
    height: 100%;
    padding: 17px 18px;
    border-right: 1px solid #e8e3e9;
    border-bottom: 1px solid #e8e3e9;
    color: #686169;
    font-size: 14px;
}

.table-games-comparison-row > div:last-child {
    border-right: 0;
}

.table-games-comparison-row:last-child > div {
    border-bottom: 0;
}

.table-games-comparison-header {
    background: #f4f0f6;
}

.table-games-comparison-header > div {
    color: #2b262d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.table-games-comparison-name {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #231f25 !important;
    font-weight: 700;
}

.table-games-comparison-name i {
    color: #770c9d;
}


/* Chips */

.table-games-chips {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 24px;
    margin-top: 26px;
    padding: 38px 40px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.table-games-chips-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #770c9d;
    color: #fff;
    font-size: 21px;
}

.table-games-chips-content > span {
    display: block;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.table-games-chips-content h3 {
    margin: 7px 0 14px;
    color: #fff;
    font-size: 24px;
}

.table-games-chips-content p {
    margin: 0 0 11px;
    color: rgba(255,255,255,0.61);
    font-size: 15px;
    line-height: 1.72;
}

.table-games-chips-content p:last-child {
    margin-bottom: 0;
}


/* Hours */

.table-games-hours {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
    padding: 30px 35px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
}

.table-games-hours-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.table-games-hours-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 13px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.table-games-hours-title span,
.table-games-hours-item span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.44);
    font-size: 11px;
    text-transform: uppercase;
}

.table-games-hours-title h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.table-games-hours-item strong {
    color: #fff;
    font-size: 16px;
}


/* Responsive */

@media (max-width: 1199px) {

    .table-games-heading h2 {
        font-size: 42px;
    }

    .table-game-card > p {
        min-height: 155px;
    }
}

@media (max-width: 991px) {

    .table-games-section {
        padding: 80px 0;
    }

    .table-games-main {
        grid-template-columns: 1fr;
    }

    .table-games-grid {
        grid-template-columns: 1fr;
    }

    .table-game-card > p {
        min-height: auto;
    }

    .table-games-hours {
        grid-template-columns: 1fr 1fr;
    }

    .table-games-hours-title {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {

    .table-games-heading h2 {
        font-size: 34px;
    }

    .table-games-heading p {
        font-size: 16px;
    }

    .table-games-image,
    .table-games-image img {
        min-height: 470px;
    }

    .table-games-intro {
        padding: 30px 25px;
    }

    .table-games-intro h3 {
        font-size: 27px;
    }

    .table-games-comparison {
        padding: 30px 25px;
        overflow-x: auto;
    }

    .table-games-comparison-table {
        min-width: 720px;
    }

    .table-games-chips {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }

    .table-games-hours {
        grid-template-columns: 1fr;
    }

    .table-games-hours-title {
        grid-column: auto;
    }
}

@media (max-width: 575px) {

    .table-games-section {
        padding: 65px 0;
    }

    .table-games-heading h2 {
        font-size: 30px;
    }

    .table-games-image,
    .table-games-image img {
        min-height: 420px;
    }

    .table-games-image-info {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .table-game-card {
        padding: 27px 23px;
    }

    .table-games-hours {
        padding: 27px 23px;
    }
}
/* =========================================
   ROULETTE — LIGHT SECTION
========================================= */

.roulette-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(119, 12, 157, 0.07), transparent 27%),
        radial-gradient(circle at 93% 82%, rgba(119, 12, 157, 0.05), transparent 28%),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.roulette-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.roulette-eyebrow,
.roulette-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.roulette-heading h2 {
    margin: 0 0 20px;
    color: #171419;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.roulette-heading h2 span {
    color: #770c9d;
}

.roulette-heading p {
    max-width: 770px;
    margin: 0 auto;
    color: #6b646d;
    font-size: 17px;
    line-height: 1.75;
}


/* Intro */

.roulette-intro-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.roulette-intro-card {
    padding: 42px;
    background: #f7f4f8;
    border: 1px solid #e9e3eb;
    border-radius: 22px;
}

.roulette-intro-card h3 {
    margin: 0 0 20px;
    color: #19161b;
    font-size: 30px;
    line-height: 1.3;
}

.roulette-intro-card p {
    margin: 0 0 16px;
    color: #6b646d;
    font-size: 16px;
    line-height: 1.78;
}

.roulette-intro-card p:last-child {
    margin-bottom: 0;
}


/* Facts */

.roulette-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.roulette-fact {
    padding: 22px 19px;
    background: #fff;
    border: 1px solid #e9e4eb;
    border-radius: 16px;
}

.roulette-fact-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 11px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.roulette-fact span {
    display: block;
    margin-bottom: 4px;
    color: #8d858f;
    font-size: 11px;
    text-transform: uppercase;
}

.roulette-fact strong {
    display: block;
    color: #1a171c;
    font-size: 19px;
}

.roulette-fact p {
    margin: 6px 0 0;
    color: #777078;
    font-size: 12px;
    line-height: 1.5;
}


/* Bets */

.roulette-bets {
    margin-top: 65px;
}

.roulette-bets-heading {
    max-width: 680px;
    margin-bottom: 30px;
}

.roulette-bets-heading > span,
.roulette-results-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.roulette-bets-heading h3,
.roulette-results-heading h3 {
    margin: 0 0 10px;
    color: #19161b;
    font-size: 28px;
}

.roulette-bets-heading p,
.roulette-results-heading p {
    margin: 0;
    color: #6f6871;
    font-size: 15px;
    line-height: 1.7;
}

.roulette-bets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.roulette-bet-card {
    padding: 24px 21px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 15px;
}

.roulette-bet-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    padding: 0 10px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
}

.roulette-bet-card h4 {
    margin: 0 0 8px;
    color: #1c181e;
    font-size: 18px;
}

.roulette-bet-card p {
    margin: 0;
    color: #756e77;
    font-size: 13px;
    line-height: 1.55;
}

.roulette-bet-card-wide {
    grid-column: span 2;
}


/* Chips */

.roulette-chips {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 24px;
    margin-top: 27px;
    padding: 38px 40px;
    background: #171419;
    border-radius: 22px;
}

.roulette-chips-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #770c9d;
    color: #fff;
    font-size: 21px;
}

.roulette-chips-content > span {
    display: block;
    color: #be70d9;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.roulette-chips-content h3 {
    margin: 7px 0 14px;
    color: #fff;
    font-size: 24px;
}

.roulette-chips-content p {
    margin: 0 0 11px;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 1.72;
}


/* TouchBet */

.roulette-touchbet {
    margin-top: 27px;
    padding: 40px;
    background:
        linear-gradient(
            135deg,
            rgba(119,12,157,0.08),
            #f8f5f9
        );
    border: 1px solid rgba(119,12,157,0.13);
    border-radius: 22px;
}

.roulette-touchbet-head {
    display: flex;
    gap: 17px;
    align-items: center;
    margin-bottom: 28px;
}

.roulette-touchbet-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
}

.roulette-touchbet-head span {
    display: block;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.roulette-touchbet-head h3 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 27px;
}

.roulette-touchbet-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

.roulette-touchbet-text p {
    margin: 0 0 15px;
    color: #6d666f;
    font-size: 15px;
    line-height: 1.72;
}

.roulette-touchbet-features {
    display: grid;
    gap: 11px;
}

.roulette-touchbet-feature {
    padding: 17px 19px;
    background: #fff;
    border: 1px solid #e7e1e9;
    border-radius: 13px;
}

.roulette-touchbet-feature strong {
    display: block;
    color: #770c9d;
    font-size: 22px;
}

.roulette-touchbet-feature span {
    color: #746d76;
    font-size: 12px;
}

.roulette-touchbet-options {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #e2dbe5;
}

.roulette-touchbet-options > span {
    display: block;
    margin-bottom: 12px;
    color: #6a636c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.roulette-touchbet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.roulette-touchbet-tags div {
    padding: 7px 12px;
    background: #fff;
    border: 1px solid #e7e1e9;
    border-radius: 20px;
    color: #5e5760;
    font-size: 12px;
}


/* Extra */

.roulette-extra {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    margin-top: 27px;
    padding: 32px 35px;
    background: #f6f2f7;
    border-radius: 19px;
}

.roulette-extra-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(119,12,157,0.1);
    color: #770c9d;
}

.roulette-extra span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.roulette-extra h3 {
    margin: 6px 0 10px;
    color: #19161b;
    font-size: 22px;
}

.roulette-extra p {
    margin: 0;
    color: #6e6770;
    font-size: 14px;
    line-height: 1.68;
}


/* Results */

.roulette-results {
    margin-top: 70px;
}

.roulette-results-heading {
    max-width: 750px;
    margin-bottom: 30px;
}

.roulette-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.roulette-results-card {
    padding: 26px 23px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 16px;
}

.roulette-results-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.roulette-results-card h4 {
    margin: 0 0 9px;
    color: #1b171d;
    font-size: 18px;
}

.roulette-results-card p {
    margin: 0;
    color: #746d76;
    font-size: 13px;
    line-height: 1.62;
}


/* Permanence example */

.roulette-results-example {
    margin-top: 23px;
    padding: 30px;
    background: #171419;
    border-radius: 20px;
}

.roulette-results-example-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.roulette-results-example-head span {
    display: block;
    color: #bd6bd9;
    font-size: 11px;
    text-transform: uppercase;
}

.roulette-results-example-head h4 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 21px;
}

.roulette-results-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

.roulette-results-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7acb84;
}

.roulette-number-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.roulette-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.14);
}

.roulette-number.red {
    background: #78212d;
}

.roulette-number.black {
    background: #29262c;
}

.roulette-number.green {
    background: #276a4b;
}

.roulette-results-example-note {
    margin: 18px 0 0;
    color: rgba(255,255,255,0.42);
    font-size: 11px;
}


/* Result note */

.roulette-results-note {
    display: flex;
    gap: 13px;
    margin-top: 18px;
    padding: 18px 20px;
    background: #f4f0f5;
    border-radius: 13px;
}

.roulette-results-note i {
    margin-top: 4px;
    color: #770c9d;
}

.roulette-results-note p {
    margin: 0;
    color: #6f6871;
    font-size: 13px;
    line-height: 1.62;
}


/* Responsive */

@media (max-width: 1199px) {

    .roulette-heading h2 {
        font-size: 42px;
    }

    .roulette-bets-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .roulette-bet-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 991px) {

    .roulette-section {
        padding: 80px 0;
    }

    .roulette-intro-grid,
    .roulette-touchbet-content {
        grid-template-columns: 1fr;
    }

    .roulette-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .roulette-heading h2 {
        font-size: 34px;
    }

    .roulette-heading p {
        font-size: 16px;
    }

    .roulette-facts {
        grid-template-columns: 1fr;
    }

    .roulette-bets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roulette-chips,
    .roulette-extra {
        grid-template-columns: 1fr;
    }

    .roulette-touchbet,
    .roulette-intro-card {
        padding: 30px 25px;
    }

    .roulette-results-example-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {

    .roulette-section {
        padding: 65px 0;
    }

    .roulette-heading h2 {
        font-size: 30px;
    }

    .roulette-bets-grid {
        grid-template-columns: 1fr;
    }

    .roulette-chips,
    .roulette-results-example {
        padding: 27px 23px;
    }
}
/* =========================================
   BLACK JACK — DARK SECTION
========================================= */

.blackjack-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 7% 12%,
            rgba(119, 12, 157, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 82%,
            rgba(119, 12, 157, 0.12),
            transparent 30%
        ),
        #151319;
    overflow: hidden;
}


/* Heading */

.blackjack-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.blackjack-eyebrow,
.blackjack-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.blackjack-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.blackjack-heading h2 span {
    color: #ad50cd;
}

.blackjack-heading p {
    max-width: 770px;
    margin: 0 auto;
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    line-height: 1.75;
}


/* Intro */

.blackjack-intro {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.blackjack-intro-main {
    padding: 42px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.blackjack-intro-main h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 31px;
    line-height: 1.3;
}

.blackjack-intro-main p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.62);
    font-size: 16px;
    line-height: 1.78;
}


/* Facts */

.blackjack-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.blackjack-fact {
    padding: 22px 19px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.blackjack-fact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 11px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.blackjack-fact span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    text-transform: uppercase;
}

.blackjack-fact strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}


/* Round */

.blackjack-round {
    margin-top: 65px;
}

.blackjack-round-heading {
    margin-bottom: 28px;
}

.blackjack-round-heading span,
.blackjack-decisions-heading span {
    display: block;
    margin-bottom: 6px;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.blackjack-round-heading h3,
.blackjack-decisions-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}

.blackjack-round-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.blackjack-round-step {
    display: flex;
    gap: 13px;
    padding: 5px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.blackjack-round-step:first-child {
    padding-left: 0;
}

.blackjack-round-step:last-child {
    border-right: 0;
}

.blackjack-round-number {
    flex: 0 0 36px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
}

.blackjack-round-step h4 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 15px;
}

.blackjack-round-step p {
    margin: 0;
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    line-height: 1.58;
}


/* Dealer */

.blackjack-dealer {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 24px;
    margin-top: 35px;
    padding: 37px 40px;
    background:
        linear-gradient(
            135deg,
            rgba(119,12,157,0.15),
            rgba(255,255,255,0.025)
        ),
        #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 21px;
}

.blackjack-dealer-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #770c9d;
    color: #fff;
    font-size: 21px;
}

.blackjack-dealer-content > span {
    display: block;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blackjack-dealer-content h3 {
    margin: 7px 0 13px;
    color: #fff;
    font-size: 24px;
}

.blackjack-dealer-content p {
    margin: 0 0 11px;
    color: rgba(255,255,255,0.61);
    font-size: 15px;
    line-height: 1.7;
}


/* Decisions */

.blackjack-decisions {
    margin-top: 55px;
}

.blackjack-decisions-heading {
    max-width: 690px;
    margin-bottom: 27px;
}

.blackjack-decisions-heading p {
    margin: 9px 0 0;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

.blackjack-decisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.blackjack-decision-card {
    padding: 25px 22px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.blackjack-decision-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 11px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.blackjack-decision-card h4 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
}

.blackjack-decision-card p {
    margin: 0;
    color: rgba(255,255,255,0.52);
    font-size: 13px;
    line-height: 1.6;
}


/* Results */

.blackjack-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.blackjack-results-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border-right: 1px solid #e8e3e9;
}

.blackjack-results-item:last-child {
    border-right: 0;
}

.blackjack-results-symbol {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 43px;
    border-radius: 50%;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.blackjack-results-item span {
    display: block;
    margin-bottom: 4px;
    color: #857d87;
    font-size: 11px;
}

.blackjack-results-item strong {
    color: #1d191f;
    font-size: 14px;
}


/* Extras */

.blackjack-extras {
    margin-top: 75px;
}

.blackjack-extras-heading {
    max-width: 800px;
    margin: 0 auto 37px;
}

.blackjack-extras-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.blackjack-extras-heading h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 31px;
}

.blackjack-extras-heading p {
    margin: 0;
    color: rgba(255,255,255,0.57);
    font-size: 15px;
    line-height: 1.7;
}

.blackjack-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blackjack-extra-card {
    padding: 31px 27px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 19px;
}

.blackjack-extra-featured {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.17),
            rgba(255,255,255,0.03)
        );
    border-color: rgba(184,96,215,0.24);
}

.blackjack-extra-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.blackjack-extra-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119,12,157,0.19);
    color: #bd6bd9;
}

.blackjack-extra-top > span {
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.blackjack-extra-card h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 21px;
}

.blackjack-extra-card > p {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.57);
    font-size: 14px;
    line-height: 1.68;
}

.blackjack-extra-payout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
    padding: 13px 15px;
    background: rgba(255,255,255,0.045);
    border-radius: 10px;
}

.blackjack-extra-payout span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.blackjack-extra-payout strong {
    color: #fff;
    font-size: 19px;
}

.blackjack-extra-rule,
.blackjack-extra-joker {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    line-height: 1.55;
}

.blackjack-extra-joker {
    display: flex;
    gap: 9px;
}

.blackjack-extra-joker i {
    color: #bd6bd9;
}


/* Extras table */

.blackjack-extra-comparison {
    margin-top: 27px;
    padding: 37px 40px;
    background: #fff;
    border-radius: 21px;
}

.blackjack-extra-comparison-heading span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blackjack-extra-comparison-heading h3 {
    margin: 0 0 25px;
    color: #19161b;
    font-size: 25px;
}

.blackjack-extra-table {
    border: 1px solid #e7e2e8;
    border-radius: 13px;
    overflow: hidden;
}

.blackjack-extra-row {
    display: grid;
    grid-template-columns: 0.8fr 1.7fr 1fr 1fr;
}

.blackjack-extra-row > div {
    padding: 16px 17px;
    border-right: 1px solid #e7e2e8;
    border-bottom: 1px solid #e7e2e8;
    color: #69626b;
    font-size: 13px;
}

.blackjack-extra-row > div:last-child {
    border-right: 0;
}

.blackjack-extra-row:last-child > div {
    border-bottom: 0;
}

.blackjack-extra-row-head {
    background: #f4f0f6;
}

.blackjack-extra-row-head > div {
    color: #2b262d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Practical */

.blackjack-practical {
    margin-top: 27px;
    padding: 37px 40px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 21px;
}

.blackjack-practical-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.blackjack-practical-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.blackjack-practical-heading span {
    display: block;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blackjack-practical-heading h3 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 23px;
}

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

.blackjack-practical-item {
    padding: 5px 20px;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.blackjack-practical-item:first-child {
    padding-left: 0;
}

.blackjack-practical-item:last-child {
    border-right: 0;
}

.blackjack-practical-item span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}

.blackjack-practical-item strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.blackjack-practical-note {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.42);
    font-size: 12px;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 1199px) {

    .blackjack-heading h2 {
        font-size: 42px;
    }

    .blackjack-round-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px 0;
    }

    .blackjack-decisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blackjack-practical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }
}

@media (max-width: 991px) {

    .blackjack-section {
        padding: 80px 0;
    }

    .blackjack-intro {
        grid-template-columns: 1fr;
    }

    .blackjack-extras-grid {
        grid-template-columns: 1fr;
    }

    .blackjack-results {
        grid-template-columns: 1fr;
    }

    .blackjack-results-item {
        border-right: 0;
        border-bottom: 1px solid #e8e3e9;
    }

    .blackjack-results-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 767px) {

    .blackjack-heading h2 {
        font-size: 34px;
    }

    .blackjack-heading p {
        font-size: 16px;
    }

    .blackjack-facts {
        grid-template-columns: 1fr;
    }

    .blackjack-round-grid {
        grid-template-columns: 1fr;
    }

    .blackjack-round-step,
    .blackjack-round-step:first-child {
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .blackjack-round-step:last-child {
        border-bottom: 0;
    }

    .blackjack-decisions-grid {
        grid-template-columns: 1fr;
    }

    .blackjack-dealer {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }

    .blackjack-extra-comparison {
        padding: 30px 25px;
        overflow-x: auto;
    }

    .blackjack-extra-table {
        min-width: 690px;
    }

    .blackjack-practical-grid {
        grid-template-columns: 1fr;
    }

    .blackjack-practical-item,
    .blackjack-practical-item:first-child {
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 575px) {

    .blackjack-section {
        padding: 65px 0;
    }

    .blackjack-heading h2 {
        font-size: 30px;
    }

    .blackjack-intro-main,
    .blackjack-practical {
        padding: 28px 23px;
    }
}

/* =========================================
   POKER — LIGHT SECTION
========================================= */

.poker-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 7% 12%, rgba(119,12,157,0.07), transparent 28%),
        radial-gradient(circle at 94% 85%, rgba(119,12,157,0.05), transparent 28%),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.poker-heading {
    max-width: 880px;
    margin: 0 auto 55px;
}

.poker-eyebrow,
.poker-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.poker-heading h2 {
    margin: 0 0 20px;
    color: #171419;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.poker-heading h2 span {
    color: #770c9d;
}

.poker-heading p {
    max-width: 790px;
    margin: 0 auto;
    color: #6c656e;
    font-size: 17px;
    line-height: 1.75;
}


/* Overview */

.poker-overview {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.poker-overview-main {
    padding: 42px;
    background: #f7f4f8;
    border: 1px solid #e8e2ea;
    border-radius: 22px;
}

.poker-overview-main h3 {
    margin: 0 0 20px;
    color: #19161b;
    font-size: 31px;
    line-height: 1.3;
}

.poker-overview-main p {
    margin: 0 0 16px;
    color: #6c656e;
    font-size: 16px;
    line-height: 1.78;
}

.poker-overview-main p:last-child {
    margin-bottom: 0;
}


/* Facts */

.poker-overview-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.poker-overview-fact {
    padding: 22px 19px;
    background: #fff;
    border: 1px solid #e9e4eb;
    border-radius: 16px;
}

.poker-overview-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 11px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.poker-overview-fact > span {
    display: block;
    margin-bottom: 5px;
    color: #8b848d;
    font-size: 11px;
    text-transform: uppercase;
}

.poker-overview-fact strong {
    display: block;
    color: #19161b;
    font-size: 17px;
}

.poker-overview-fact p {
    margin: 5px 0 0;
    color: #777078;
    font-size: 12px;
}


/* Variants */

.poker-variants {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.poker-variant-card {
    position: relative;
    padding: 32px 29px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 18px;
}

.poker-variant-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.poker-variant-icon {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.poker-variant-top > span {
    color: rgba(119,12,157,0.08);
    font-size: 42px;
    font-weight: 700;
}

.poker-variant-label {
    margin-bottom: 6px;
    color: #9861aa;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.poker-variant-card h3 {
    margin: 0 0 13px;
    color: #19161b;
    font-size: 24px;
}

.poker-variant-card > p {
    margin: 0;
    color: #716a73;
    font-size: 14px;
    line-height: 1.7;
}

.poker-variant-note {
    margin-top: 20px;
    padding: 16px;
    background: #f3eff5;
    border-radius: 11px;
}

.poker-variant-note span {
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.poker-variant-note p {
    margin: 5px 0 0;
    color: #686169;
    font-size: 13px;
    line-height: 1.55;
}


/* Generic subsection heading */

.poker-cash-games,
.poker-tournaments {
    margin-top: 75px;
}

.poker-section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.poker-section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.poker-section-heading h3 {
    margin: 0 0 12px;
    color: #19161b;
    font-size: 30px;
}

.poker-section-heading p {
    margin: 0;
    color: #6e6770;
    font-size: 15px;
    line-height: 1.72;
}


/* Registration */

.poker-registration-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 28px;
    background: #171419;
    border-radius: 18px;
}

.poker-registration-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 4px 19px;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.poker-registration-item:first-child {
    padding-left: 0;
}

.poker-registration-item:last-child {
    border-right: 0;
}

.poker-registration-item > i {
    color: #bd6bd9;
    font-size: 18px;
}

.poker-registration-item span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    text-transform: uppercase;
}

.poker-registration-item strong {
    color: #fff;
    font-size: 13px;
}


/* Cash table */

.poker-cash-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
}

.poker-cash-table {
    min-width: 850px;
    overflow: hidden;
    border: 1px solid #e6e1e8;
    border-radius: 16px;
}

.poker-cash-row {
    display: grid;
    grid-template-columns: 1.35fr 1.7fr 1.45fr 1fr;
}

.poker-cash-row > div {
    padding: 15px 17px;
    border-right: 1px solid #e8e3e9;
    border-bottom: 1px solid #e8e3e9;
    color: #686169;
    font-size: 13px;
}

.poker-cash-row > div:last-child {
    border-right: 0;
}

.poker-cash-row:last-child > div {
    border-bottom: 0;
}

.poker-cash-head {
    background: #f1edf3;
}

.poker-cash-head > div {
    color: #29242b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.poker-cash-day {
    color: #1c181e !important;
    font-weight: 700;
}

.poker-cash-group-start > div {
    border-top: 3px solid #f2eef4;
}


/* Tax */

.poker-taxe {
    margin-top: 24px;
    padding: 35px 38px;
    background: #f6f2f7;
    border-radius: 20px;
}

.poker-taxe-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.poker-taxe-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.poker-taxe-heading span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.poker-taxe-heading h4 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 22px;
}

.poker-taxe-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.poker-taxe-value {
    padding: 5px 25px;
    border-right: 1px solid #ddd6e0;
}

.poker-taxe-value:first-child {
    padding-left: 0;
}

.poker-taxe-value:last-child {
    border-right: 0;
}

.poker-taxe-value > span {
    display: block;
    margin-bottom: 5px;
    color: #837b85;
    font-size: 11px;
}

.poker-taxe-value strong {
    display: block;
    color: #770c9d;
    font-size: 21px;
}

.poker-taxe-value p {
    margin: 5px 0 0;
    color: #716a73;
    font-size: 12px;
    line-height: 1.5;
}


/* Tournament benefits */

.poker-tournament-benefits {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 28px;
    background: #171419;
    border-radius: 18px;
}

.poker-tournament-benefit {
    text-align: center;
    padding: 0 25px;
}

.poker-tournament-benefit strong {
    display: block;
    color: #fff;
    font-size: 30px;
}

.poker-tournament-benefit span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.poker-tournament-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.10);
}


/* Tournament cards */

.poker-tournament-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.poker-tournament-card {
    padding: 29px 25px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 18px;
}

.poker-tournament-featured {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.07),
            #fff
        );
    border-color: rgba(119,12,157,0.20);
}

.poker-tournament-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 13px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.poker-tournament-label {
    display: block;
    margin-bottom: 7px;
    color: #9861aa;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poker-tournament-card h4 {
    margin: 0 0 13px;
    color: #19161b;
    font-size: 21px;
}

.poker-tournament-card > p {
    min-height: 115px;
    margin: 0;
    color: #716a73;
    font-size: 14px;
    line-height: 1.65;
}

.poker-tournament-details {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.poker-tournament-details > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 13px;
    background: #f2eef4;
    border-radius: 9px;
}

.poker-tournament-details span {
    color: #817982;
    font-size: 11px;
}

.poker-tournament-details strong {
    color: #29242b;
    font-size: 12px;
}

.poker-tournament-special-note {
    display: flex;
    gap: 9px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #e6e0e8;
    color: #777078;
    font-size: 12px;
    line-height: 1.55;
}

.poker-tournament-special-note i {
    margin-top: 3px;
    color: #770c9d;
}


/* Booking */

.poker-booking {
    margin-top: 27px;
    padding: 38px 40px;
    background: #f4f0f6;
    border-radius: 21px;
}

.poker-booking-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.poker-booking-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.poker-booking-head span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.poker-booking-head h3 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 24px;
}

.poker-booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.poker-booking-item {
    padding: 5px 25px;
    border-right: 1px solid #ddd6e0;
}

.poker-booking-item:first-child {
    padding-left: 0;
}

.poker-booking-item:last-child {
    border-right: 0;
}

.poker-booking-number {
    margin-bottom: 10px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
}

.poker-booking-item h4 {
    margin: 0 0 8px;
    color: #1b171d;
    font-size: 17px;
}

.poker-booking-item p {
    margin: 0;
    color: #716a73;
    font-size: 13px;
    line-height: 1.6;
}


/* First visit */

.poker-first-visit {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 23px;
    margin-top: 27px;
    padding: 37px 40px;
    background: #fff;
    border: 1px solid #e8e3e9;
    border-radius: 21px;
}

.poker-first-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
    font-size: 20px;
}

.poker-first-visit span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.poker-first-visit h3 {
    margin: 6px 0 13px;
    color: #19161b;
    font-size: 23px;
}

.poker-first-visit p {
    margin: 0 0 11px;
    color: #6d666f;
    font-size: 14px;
    line-height: 1.7;
}


/* Responsive */

@media (max-width: 1199px) {

    .poker-heading h2 {
        font-size: 42px;
    }

    .poker-registration-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .poker-registration-item:nth-child(2) {
        border-right: 0;
    }

    .poker-tournament-grid {
        grid-template-columns: 1fr;
    }

    .poker-tournament-card > p {
        min-height: auto;
    }
}

@media (max-width: 991px) {

    .poker-section {
        padding: 80px 0;
    }

    .poker-overview {
        grid-template-columns: 1fr;
    }

    .poker-variants {
        grid-template-columns: 1fr;
    }

    .poker-taxe-values {
        grid-template-columns: 1fr;
    }

    .poker-taxe-value,
    .poker-taxe-value:first-child {
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid #ddd6e0;
    }

    .poker-taxe-value:last-child {
        border-bottom: 0;
    }

    .poker-tournament-benefits {
        flex-direction: column;
        gap: 25px;
    }

    .poker-tournament-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 767px) {

    .poker-heading h2 {
        font-size: 34px;
    }

    .poker-heading p {
        font-size: 16px;
    }

    .poker-overview-facts {
        grid-template-columns: 1fr;
    }

    .poker-registration-strip {
        grid-template-columns: 1fr;
    }

    .poker-registration-item,
    .poker-registration-item:first-child {
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .poker-registration-item:last-child {
        border-bottom: 0;
    }

    .poker-booking {
        padding: 30px 25px;
    }

    .poker-booking-grid {
        grid-template-columns: 1fr;
    }

    .poker-booking-item,
    .poker-booking-item:first-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid #ddd6e0;
    }

    .poker-booking-item:last-child {
        border-bottom: 0;
    }

    .poker-first-visit {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .poker-section {
        padding: 65px 0;
    }

    .poker-heading h2 {
        font-size: 30px;
    }

    .poker-overview-main,
    .poker-taxe {
        padding: 28px 23px;
    }
}

/* =========================================
   TOUCHBET & ELECTRONIC GAMES — DARK
========================================= */

.electronic-games-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(119, 12, 157, 0.23),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 82%,
            rgba(119, 12, 157, 0.12),
            transparent 29%
        ),
        #151319;
    overflow: hidden;
}


/* Heading */

.electronic-games-heading {
    max-width: 870px;
    margin: 0 auto 55px;
}

.electronic-games-eyebrow,
.electronic-games-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.electronic-games-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.electronic-games-heading h2 span {
    color: #ad50cd;
}

.electronic-games-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255,255,255,0.64);
    font-size: 17px;
    line-height: 1.75;
}


/* Intro */

.electronic-games-intro {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.electronic-games-main {
    padding: 42px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.electronic-games-main h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 31px;
    line-height: 1.3;
}

.electronic-games-main p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.62);
    font-size: 16px;
    line-height: 1.78;
}

.electronic-games-main p:last-child {
    margin-bottom: 0;
}


/* Facts */

.electronic-games-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.electronic-games-fact {
    padding: 22px 19px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.electronic-games-fact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 11px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.electronic-games-fact > span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    text-transform: uppercase;
}

.electronic-games-fact strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.electronic-games-fact p {
    margin: 5px 0 0;
    color: rgba(255,255,255,0.47);
    font-size: 12px;
    line-height: 1.5;
}


/* Section headings */

.electronic-games-selection,
.electronic-roulette,
.electronic-comparison,
.electronic-bets,
.electronic-locations {
    margin-top: 65px;
}

.electronic-games-section-heading {
    max-width: 700px;
    margin-bottom: 30px;
}

.electronic-games-section-heading > span,
.electronic-bets-head > span,
.electronic-locations-heading > span,
.electronic-comparison-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.electronic-games-section-heading h3,
.electronic-bets-head h3,
.electronic-locations-heading h3,
.electronic-comparison-heading h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
}

.electronic-games-section-heading p,
.electronic-bets-head p,
.electronic-locations-heading p {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.68;
}


/* Game cards */

.electronic-games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.electronic-game-card {
    padding: 27px 23px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 17px;
}

.electronic-game-featured {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.18),
            rgba(255,255,255,0.03)
        );
    border-color: rgba(186,94,217,0.24);
}

.electronic-game-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 21px;
}

.electronic-game-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.electronic-game-top > span {
    color: rgba(255,255,255,0.38);
    font-size: 10px;
    text-transform: uppercase;
}

.electronic-game-card h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
}

.electronic-game-card p {
    margin: 0;
    color: rgba(255,255,255,0.52);
    font-size: 13px;
    line-height: 1.62;
}

.electronic-game-note {
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #bd6bd9;
    font-size: 11px;
}


/* Roulette */

.electronic-roulette {
    padding: 40px;
    background: #fff;
    border-radius: 22px;
}

.electronic-roulette-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.electronic-roulette-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 55px;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
}

.electronic-roulette-heading span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.electronic-roulette-heading h3 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 27px;
}

.electronic-roulette-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
}

.electronic-roulette-text p {
    margin: 0 0 15px;
    color: #6d666f;
    font-size: 15px;
    line-height: 1.72;
}

.electronic-roulette-flow {
    display: grid;
    gap: 10px;
}

.electronic-roulette-step {
    display: flex;
    gap: 13px;
    padding: 15px;
    background: #f6f2f7;
    border-radius: 12px;
}

.electronic-roulette-step > span {
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
}

.electronic-roulette-step h4 {
    margin: 0 0 4px;
    color: #1c181e;
    font-size: 15px;
}

.electronic-roulette-step p {
    margin: 0;
    color: #777078;
    font-size: 12px;
    line-height: 1.5;
}


/* Comparison */

.electronic-comparison {
    padding: 39px 40px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.electronic-comparison-heading {
    margin-bottom: 28px;
}

.electronic-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: stretch;
}

.electronic-comparison-card {
    padding: 27px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.electronic-comparison-highlight {
    background: rgba(119,12,157,0.12);
    border-color: rgba(189,107,217,0.20);
}

.electronic-comparison-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 12px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.electronic-comparison-card > span {
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.electronic-comparison-card h4 {
    margin: 6px 0 11px;
    color: #fff;
    font-size: 20px;
}

.electronic-comparison-card p {
    margin: 0;
    color: rgba(255,255,255,0.54);
    font-size: 13px;
    line-height: 1.65;
}

.electronic-comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.electronic-comparison-divider span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #770c9d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}


/* Bets */

.electronic-bets {
    padding: 35px 38px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
}

.electronic-bets-head {
    max-width: 670px;
    margin-bottom: 24px;
}

.electronic-bets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.electronic-bets-list div {
    padding: 8px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    color: rgba(255,255,255,0.70);
    font-size: 12px;
}


/* Locations */

.electronic-locations-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.electronic-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
}

.electronic-location-card {
    display: flex;
    gap: 19px;
    padding: 30px 27px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.electronic-location-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    border-radius: 13px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.electronic-location-card span {
    display: block;
    color: #bd6bd9;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.electronic-location-card h4 {
    margin: 5px 0 9px;
    color: #fff;
    font-size: 20px;
}

.electronic-location-card strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
}

.electronic-location-card p {
    margin: 0;
    color: rgba(255,255,255,0.52);
    font-size: 13px;
    line-height: 1.62;
}


/* Responsive */

@media (max-width: 1199px) {

    .electronic-games-heading h2 {
        font-size: 42px;
    }

    .electronic-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {

    .electronic-games-section {
        padding: 80px 0;
    }

    .electronic-games-intro,
    .electronic-roulette-content {
        grid-template-columns: 1fr;
    }

    .electronic-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .electronic-comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .electronic-comparison-divider {
        padding: 5px 0;
    }
}

@media (max-width: 767px) {

    .electronic-games-heading h2 {
        font-size: 34px;
    }

    .electronic-games-heading p {
        font-size: 16px;
    }

    .electronic-games-facts {
        grid-template-columns: 1fr;
    }

    .electronic-games-grid {
        grid-template-columns: 1fr;
    }

    .electronic-location-grid {
        grid-template-columns: 1fr;
    }

    .electronic-roulette,
    .electronic-comparison,
    .electronic-bets {
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .electronic-games-section {
        padding: 65px 0;
    }

    .electronic-games-heading h2 {
        font-size: 30px;
    }

    .electronic-games-main {
        padding: 28px 23px;
    }

    .electronic-location-card {
        flex-direction: column;
        padding: 25px 22px;
    }
}

/* =========================================
   CLUB CARD — LIGHT SECTION
========================================= */

.club-card-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(119,12,157,0.07), transparent 28%),
        radial-gradient(circle at 93% 85%, rgba(119,12,157,0.05), transparent 27%),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.club-card-heading {
    max-width: 860px;
    margin: 0 auto 55px;
}

.club-card-eyebrow,
.club-card-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.club-card-heading h2 {
    margin: 0 0 20px;
    color: #171419;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.club-card-heading h2 span {
    color: #770c9d;
}

.club-card-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #6d666f;
    font-size: 17px;
    line-height: 1.75;
}


/* Main */

.club-card-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.club-card-image {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 23px;
}

.club-card-image img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    display: block;
    object-fit: cover;
}

.club-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.03) 35%,
            rgba(12,9,14,0.88) 100%
        );
}

.club-card-image-overlay {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.club-card-image-overlay > span {
    display: block;
    margin-bottom: 6px;
    color: #d788f2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.club-card-image-overlay h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 27px;
}

.club-card-image-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.66);
    font-size: 13px;
}


/* Intro */

.club-card-intro {
    padding: 43px;
    background: #f7f4f8;
    border: 1px solid #e8e2ea;
    border-radius: 23px;
}

.club-card-intro h3 {
    margin: 0 0 20px;
    color: #19161b;
    font-size: 31px;
    line-height: 1.3;
}

.club-card-intro > p {
    margin: 0 0 16px;
    color: #6d666f;
    font-size: 15px;
    line-height: 1.78;
}

.club-card-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 27px;
    overflow: hidden;
    background: #e4dde7;
    border-radius: 13px;
}

.club-card-info-strip > div {
    padding: 17px;
    background: #fff;
}

.club-card-info-strip span {
    display: block;
    margin-bottom: 4px;
    color: #8c848e;
    font-size: 10px;
    text-transform: uppercase;
}

.club-card-info-strip strong {
    color: #1a171c;
    font-size: 13px;
}


/* Generic heading */

.club-card-benefits,
.club-card-process,
.club-extra-points {
    margin-top: 65px;
}

.club-card-section-heading,
.club-extra-heading {
    max-width: 710px;
    margin-bottom: 29px;
}

.club-card-section-heading > span,
.club-extra-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.club-card-section-heading h3,
.club-extra-heading h3 {
    margin: 0 0 10px;
    color: #19161b;
    font-size: 28px;
}

.club-card-section-heading p,
.club-extra-heading p {
    margin: 0;
    color: #706970;
    font-size: 14px;
    line-height: 1.68;
}


/* Benefits */

.club-card-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.club-benefit-card {
    position: relative;
    padding: 27px 23px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 17px;
    transition: 0.3s ease;
}

.club-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(119,12,157,0.22);
    box-shadow: 0 17px 35px rgba(26,20,30,0.07);
}

.club-benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 12px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.club-benefit-card > span {
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(119,12,157,0.08);
    font-size: 30px;
    font-weight: 700;
}

.club-benefit-card h4 {
    margin: 0 0 10px;
    color: #1a171c;
    font-size: 19px;
}

.club-benefit-card p {
    margin: 0;
    color: #746d76;
    font-size: 13px;
    line-height: 1.62;
}


/* Process */

.club-card-process {
    padding: 39px 40px;
    background: #171419;
    border-radius: 22px;
}

.club-card-process-heading {
    margin-bottom: 28px;
}

.club-card-process-heading span {
    display: block;
    margin-bottom: 6px;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.club-card-process-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
}

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

.club-card-process-step {
    display: flex;
    gap: 13px;
    padding: 5px 20px;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.club-card-process-step:first-child {
    padding-left: 0;
}

.club-card-process-step:last-child {
    border-right: 0;
}

.club-card-process-number {
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
}

.club-card-process-step h4 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 15px;
}

.club-card-process-step p {
    margin: 0;
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    line-height: 1.58;
}


/* Club jackpot */

.club-jackpot {
    margin-top: 27px;
    padding: 38px 40px;
    background:
        linear-gradient(
            135deg,
            rgba(119,12,157,0.08),
            #f7f4f8
        );
    border: 1px solid rgba(119,12,157,0.14);
    border-radius: 21px;
}

.club-jackpot-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 27px;
}

.club-jackpot-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.club-jackpot-heading span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.club-jackpot-heading h3 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 25px;
}

.club-jackpot-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

.club-jackpot-text p {
    margin: 0 0 13px;
    color: #6d666f;
    font-size: 14px;
    line-height: 1.7;
}

.club-jackpot-times {
    display: grid;
    gap: 12px;
}

.club-jackpot-time {
    padding: 19px;
    background: #fff;
    border: 1px solid #e5dfe7;
    border-radius: 13px;
}

.club-jackpot-time span {
    display: block;
    margin-bottom: 4px;
    color: #8b838c;
    font-size: 11px;
    text-transform: uppercase;
}

.club-jackpot-time strong {
    color: #770c9d;
    font-size: 21px;
}


/* Tournament */

.club-tournament {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    gap: 35px;
    margin-top: 27px;
    padding: 37px 40px;
    background: #fff;
    border: 1px solid #e8e3e9;
    border-radius: 21px;
}

.club-tournament-label {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.club-tournament-main h3 {
    margin: 0 0 13px;
    color: #19161b;
    font-size: 24px;
}

.club-tournament-main p {
    margin: 0 0 11px;
    color: #6d666f;
    font-size: 14px;
    line-height: 1.68;
}

.club-tournament-stat {
    padding-left: 32px;
    border-left: 1px solid #e3dde5;
}

.club-tournament-stat span {
    display: block;
    color: #857d87;
    font-size: 11px;
    text-transform: uppercase;
}

.club-tournament-stat strong {
    display: block;
    margin-top: 5px;
    color: #770c9d;
    font-size: 35px;
}

.club-tournament-stat p {
    margin: 4px 0 0;
    color: #827b83;
    font-size: 11px;
}


/* Extra points */

.club-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.club-extra-card {
    padding: 26px 23px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 16px;
}

.club-extra-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 12px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.club-extra-card > span {
    display: block;
    color: #9861aa;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.club-extra-card strong {
    display: block;
    margin-top: 5px;
    color: #1a171c;
    font-size: 19px;
}

.club-extra-card p {
    margin: 9px 0 0;
    color: #746d76;
    font-size: 13px;
    line-height: 1.6;
}


/* Difference */

.club-card-difference {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 23px;
    margin-top: 27px;
    padding: 37px 40px;
    background: #f4f0f6;
    border-radius: 21px;
}

.club-card-difference-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
    font-size: 20px;
}

.club-card-difference span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.club-card-difference h3 {
    margin: 6px 0 12px;
    color: #19161b;
    font-size: 23px;
}

.club-card-difference p {
    margin: 0 0 10px;
    color: #6d666f;
    font-size: 14px;
    line-height: 1.68;
}


/* Responsive */

@media (max-width: 1199px) {

    .club-card-heading h2 {
        font-size: 42px;
    }

    .club-card-benefits-grid,
    .club-card-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .club-card-process-step {
        border-right: 0;
    }
}

@media (max-width: 991px) {

    .club-card-section {
        padding: 80px 0;
    }

    .club-card-main,
    .club-jackpot-content,
    .club-tournament {
        grid-template-columns: 1fr;
    }

    .club-tournament-stat {
        padding: 22px 0 0;
        border-left: 0;
        border-top: 1px solid #e3dde5;
    }
}

@media (max-width: 767px) {

    .club-card-heading h2 {
        font-size: 34px;
    }

    .club-card-heading p {
        font-size: 16px;
    }

    .club-card-info-strip,
    .club-card-benefits-grid,
    .club-card-process-grid,
    .club-extra-grid {
        grid-template-columns: 1fr;
    }

    .club-card-image,
    .club-card-image img {
        min-height: 460px;
    }

    .club-card-difference {
        grid-template-columns: 1fr;
    }

    .club-card-process {
        padding: 30px 25px;
    }

    .club-card-process-step,
    .club-card-process-step:first-child {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .club-card-process-step:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {

    .club-card-section {
        padding: 65px 0;
    }

    .club-card-heading h2 {
        font-size: 30px;
    }

    .club-card-intro,
    .club-jackpot,
    .club-tournament,
    .club-card-difference {
        padding: 28px 23px;
    }
}

/* =========================================
   DRESS CODE & OPENING HOURS — DARK
========================================= */

.visit-rules-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(119, 12, 157, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(119, 12, 157, 0.11),
            transparent 28%
        ),
        #151319;
    overflow: hidden;
}


/* Heading */

.visit-rules-heading {
    max-width: 860px;
    margin: 0 auto 55px;
}

.visit-rules-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.visit-rules-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.visit-rules-heading h2 span {
    color: #ad50cd;
}

.visit-rules-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255,255,255,0.64);
    font-size: 17px;
    line-height: 1.75;
}


/* Section Heading */

.visit-section-heading {
    max-width: 740px;
    margin-bottom: 30px;
}

.visit-section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.visit-section-heading h3 {
    margin: 0 0 11px;
    color: #fff;
    font-size: 29px;
}

.visit-section-heading p {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
}


/* Dress Code */

.dress-code-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.dress-code-card {
    padding: 31px 27px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.dress-code-allowed {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.13),
            rgba(255,255,255,0.03)
        );
}

.dress-code-card-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.dress-code-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.dress-code-card-top > span {
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.dress-code-card h4 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 21px;
}

.dress-code-card > p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.54);
    font-size: 13px;
    line-height: 1.65;
}

.dress-code-card ul {
    margin: 0;
    padding: 0;
}

.dress-code-card ul li {
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.45;
}

.dress-code-card ul li i {
    margin-top: 3px;
    color: #bd6bd9;
    font-size: 11px;
}

.dress-code-card-note {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.42);
    font-size: 12px;
    line-height: 1.55;
}

.dress-code-forbidden-list {
    columns: 2;
    column-gap: 18px;
}

.dress-code-forbidden-list li {
    break-inside: avoid;
}


/* Jeans */

.dress-code-jeans {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    margin-top: 25px;
    padding: 33px 36px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 19px;
}

.dress-code-jeans-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
}

.dress-code-jeans span {
    display: block;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.dress-code-jeans h3 {
    margin: 6px 0 10px;
    color: #fff;
    font-size: 22px;
}

.dress-code-jeans p {
    margin: 0;
    color: rgba(255,255,255,0.59);
    font-size: 14px;
    line-height: 1.68;
}


/* Opening Hours */

.opening-hours-block {
    margin-top: 75px;
}

.opening-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.opening-hours-card {
    padding: 32px 29px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 19px;
}

.opening-hours-highlight {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.16),
            rgba(255,255,255,0.03)
        );
    border-color: rgba(185,96,216,0.22);
}

.opening-hours-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.opening-hours-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.opening-hours-top span {
    display: block;
    color: #bd6bd9;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.opening-hours-top h4 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 22px;
}

.opening-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.opening-hours-row span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.40);
    font-size: 11px;
}

.opening-hours-row strong {
    color: #fff;
    font-size: 16px;
}

.opening-hours-row > i {
    color: #bd6bd9;
}

.opening-hours-card-note {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding: 15px;
    background: rgba(255,255,255,0.035);
    border-radius: 11px;
}

.opening-hours-card-note i {
    margin-top: 3px;
    color: #bd6bd9;
}

.opening-hours-card-note p {
    margin: 0;
    color: rgba(255,255,255,0.46);
    font-size: 12px;
    line-height: 1.55;
}


/* Closed Days */

.closed-days {
    margin-top: 28px;
    padding: 38px 40px;
    background: #fff;
    border-radius: 21px;
}

.closed-days-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.closed-days-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.closed-days-heading span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.closed-days-heading h3 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 24px;
}

.closed-days-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.closed-day {
    padding: 18px 16px;
    background: #f7f4f8;
    border: 1px solid #e9e4eb;
    border-radius: 12px;
}

.closed-day span {
    display: block;
    margin-bottom: 5px;
    color: #1a171c;
    font-size: 14px;
    font-weight: 700;
}

.closed-day p {
    margin: 0;
    color: #777078;
    font-size: 11px;
    line-height: 1.5;
}

.closed-days-special {
    display: flex;
    gap: 13px;
    margin-top: 19px;
    padding: 17px 19px;
    background: #f2edf4;
    border-radius: 11px;
}

.closed-days-special > i {
    margin-top: 3px;
    color: #770c9d;
}

.closed-days-special span {
    display: block;
    margin-bottom: 4px;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.closed-days-special p {
    margin: 0;
    color: #6d666f;
    font-size: 13px;
    line-height: 1.6;
}


/* Summary */

.visit-summary {
    margin-top: 28px;
    padding: 35px 38px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
}

.visit-summary-heading {
    margin-bottom: 26px;
}

.visit-summary-heading span {
    display: block;
    margin-bottom: 5px;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.visit-summary-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

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

.visit-summary-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 5px 20px;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.visit-summary-item:first-child {
    padding-left: 0;
}

.visit-summary-item:last-child {
    border-right: 0;
}

.visit-summary-item > i {
    color: #bd6bd9;
    font-size: 17px;
}

.visit-summary-item span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.38);
    font-size: 10px;
    text-transform: uppercase;
}

.visit-summary-item strong {
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
}


/* Responsive */

@media (max-width: 1199px) {

    .visit-rules-heading h2 {
        font-size: 42px;
    }

    .closed-days-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .visit-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }
}

@media (max-width: 991px) {

    .visit-rules-section {
        padding: 80px 0;
    }

    .dress-code-grid {
        grid-template-columns: 1fr;
    }

    .opening-hours-grid {
        grid-template-columns: 1fr;
    }

    .closed-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .visit-rules-heading h2 {
        font-size: 34px;
    }

    .visit-rules-heading p {
        font-size: 16px;
    }

    .dress-code-jeans {
        grid-template-columns: 1fr;
        padding: 28px 23px;
    }

    .dress-code-forbidden-list {
        columns: 1;
    }

    .closed-days {
        padding: 30px 25px;
    }

    .visit-summary-grid {
        grid-template-columns: 1fr;
    }

    .visit-summary-item,
    .visit-summary-item:first-child {
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .visit-summary-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {

    .visit-rules-section {
        padding: 65px 0;
    }

    .visit-rules-heading h2 {
        font-size: 30px;
    }

    .dress-code-card,
    .opening-hours-card {
        padding: 27px 23px;
    }

    .closed-days-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   DINING — LIGHT SECTION
========================================= */

.dining-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(119, 12, 157, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(119, 12, 157, 0.05),
            transparent 28%
        ),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.dining-heading {
    max-width: 860px;
    margin: 0 auto 55px;
}

.dining-eyebrow,
.dining-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.dining-heading h2 {
    margin: 0 0 20px;
    color: #171419;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.dining-heading h2 span {
    color: #770c9d;
}

.dining-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #6d666f;
    font-size: 17px;
    line-height: 1.75;
}


/* Main */

.dining-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dining-image {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: 23px;
}

.dining-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
}

.dining-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.03) 35%,
            rgba(11,8,13,0.88) 100%
        );
}

.dining-image-overlay {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.dining-image-overlay span {
    display: block;
    margin-bottom: 6px;
    color: #d989f2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.dining-image-overlay h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 27px;
}

.dining-image-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}


/* Intro */

.dining-intro {
    padding: 43px;
    background: #f7f4f8;
    border: 1px solid #e8e2ea;
    border-radius: 23px;
}

.dining-intro h3 {
    margin: 0 0 20px;
    color: #19161b;
    font-size: 31px;
    line-height: 1.3;
}

.dining-intro p {
    margin: 0 0 16px;
    color: #6d666f;
    font-size: 15px;
    line-height: 1.78;
}


/* Restaurant */

.dining-restaurant {
    margin-top: 65px;
    padding: 39px 40px;
    background: #171419;
    border-radius: 22px;
}

.dining-restaurant-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 29px;
}

.dining-restaurant-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.dining-restaurant-heading span {
    display: block;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.dining-restaurant-heading h3 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 26px;
}

.dining-restaurant-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.dining-restaurant-text p {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.59);
    font-size: 14px;
    line-height: 1.72;
}

.dining-restaurant-facts {
    display: grid;
    gap: 11px;
}

.dining-restaurant-fact {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 11px;
}

.dining-restaurant-fact > i {
    width: 28px;
    color: #bd6bd9;
    text-align: center;
}

.dining-restaurant-fact span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.38);
    font-size: 10px;
    text-transform: uppercase;
}

.dining-restaurant-fact strong {
    color: #fff;
    font-size: 13px;
}


/* Bars */

.dining-bars {
    margin-top: 65px;
}

.dining-section-heading {
    max-width: 710px;
    margin-bottom: 29px;
}

.dining-section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.dining-section-heading h3 {
    margin: 0 0 10px;
    color: #19161b;
    font-size: 28px;
}

.dining-section-heading p {
    margin: 0;
    color: #706970;
    font-size: 14px;
    line-height: 1.68;
}

.dining-bars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dining-bar-card {
    padding: 32px 29px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 18px;
}

.dining-bar-featured {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.07),
            #fff
        );
    border-color: rgba(119,12,157,0.19);
}

.dining-bar-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.dining-bar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.dining-bar-top > span {
    color: #9861aa;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.dining-bar-card h3 {
    margin: 0 0 13px;
    color: #19161b;
    font-size: 23px;
}

.dining-bar-card > p {
    margin: 0 0 14px;
    color: #706970;
    font-size: 14px;
    line-height: 1.68;
}

.dining-bar-location {
    display: flex;
    gap: 11px;
    margin-top: 21px;
    padding-top: 17px;
    border-top: 1px solid #e6e0e8;
}

.dining-bar-location > i {
    margin-top: 3px;
    color: #770c9d;
}

.dining-bar-location span {
    display: block;
    color: #89818a;
    font-size: 10px;
    text-transform: uppercase;
}

.dining-bar-location strong {
    color: #29242b;
    font-size: 13px;
}


/* K1 Note */

.dining-k1-note {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    margin-top: 26px;
    padding: 33px 36px;
    background: #f4f0f6;
    border-radius: 19px;
}

.dining-k1-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
}

.dining-k1-note span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.dining-k1-note h3 {
    margin: 6px 0 10px;
    color: #19161b;
    font-size: 22px;
}

.dining-k1-note p {
    margin: 0;
    color: #6e6770;
    font-size: 14px;
    line-height: 1.68;
}


/* Access */

.dining-access {
    margin-top: 65px;
}

.dining-access-heading {
    margin-bottom: 26px;
}

.dining-access-heading span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.dining-access-heading h3 {
    margin: 0;
    color: #19161b;
    font-size: 26px;
}

.dining-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.dining-access-item {
    display: flex;
    gap: 15px;
    padding: 25px 22px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 16px;
}

.dining-access-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    border-radius: 11px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.dining-access-item span {
    display: block;
    color: #9861aa;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.dining-access-item strong {
    display: block;
    margin-top: 5px;
    color: #1a171c;
    font-size: 14px;
}

.dining-access-item p {
    margin: 7px 0 0;
    color: #756e77;
    font-size: 12px;
    line-height: 1.55;
}


/* Current Note */

.dining-current-note {
    display: flex;
    gap: 13px;
    margin-top: 26px;
    padding: 18px 20px;
    background: #f2edf4;
    border-radius: 12px;
}

.dining-current-note > i {
    margin-top: 4px;
    color: #770c9d;
}

.dining-current-note span {
    display: block;
    margin-bottom: 5px;
    color: #770c9d;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.dining-current-note p {
    margin: 0;
    color: #6f6871;
    font-size: 12px;
    line-height: 1.62;
}


/* Responsive */

@media (max-width: 1199px) {

    .dining-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {

    .dining-section {
        padding: 80px 0;
    }

    .dining-main,
    .dining-restaurant-content {
        grid-template-columns: 1fr;
    }

    .dining-bars-grid {
        grid-template-columns: 1fr;
    }

    .dining-access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .dining-heading h2 {
        font-size: 34px;
    }

    .dining-heading p {
        font-size: 16px;
    }

    .dining-image,
    .dining-image img {
        min-height: 450px;
    }

    .dining-k1-note {
        grid-template-columns: 1fr;
    }

    .dining-restaurant {
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .dining-section {
        padding: 65px 0;
    }

    .dining-heading h2 {
        font-size: 30px;
    }

    .dining-intro,
    .dining-bar-card,
    .dining-k1-note {
        padding: 27px 23px;
    }

    .dining-image,
    .dining-image img {
        min-height: 410px;
    }
}

/* =========================================
   FACILITIES — DARK SECTION
========================================= */

.facilities-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(119,12,157,0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(119,12,157,0.11),
            transparent 28%
        ),
        #151319;
    overflow: hidden;
}


/* Heading */

.facilities-heading {
    max-width: 860px;
    margin: 0 auto 55px;
}

.facilities-eyebrow,
.facilities-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.facilities-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.facilities-heading h2 span {
    color: #ad50cd;
}

.facilities-heading p {
    max-width: 770px;
    margin: 0 auto;
    color: rgba(255,255,255,0.64);
    font-size: 17px;
    line-height: 1.75;
}


/* Overview */

.facilities-overview {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.facilities-overview-main {
    padding: 42px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.facilities-overview-main h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 31px;
    line-height: 1.3;
}

.facilities-overview-main p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.61);
    font-size: 15px;
    line-height: 1.77;
}


/* Facts */

.facilities-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.facilities-fact {
    padding: 22px 19px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.facilities-fact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 11px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.facilities-fact span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.40);
    font-size: 11px;
    text-transform: uppercase;
}

.facilities-fact strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.facilities-fact p {
    margin: 5px 0 0;
    color: rgba(255,255,255,0.47);
    font-size: 12px;
}


/* Areas */

.facilities-areas,
.facilities-comfort {
    margin-top: 65px;
}

.facilities-section-heading,
.facilities-comfort-heading {
    max-width: 720px;
    margin-bottom: 29px;
}

.facilities-section-heading > span,
.facilities-comfort-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #bd6bd9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.facilities-section-heading h3,
.facilities-comfort-heading h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
}

.facilities-section-heading p,
.facilities-comfort-heading p {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.68;
}

.facilities-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.facilities-area-card {
    padding: 29px 25px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.facilities-area-highlight {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.16),
            rgba(255,255,255,0.03)
        );
    border-color: rgba(187,97,218,0.22);
}

.facilities-area-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 21px;
}

.facilities-area-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.facilities-area-top span {
    color: #bd6bd9;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.facilities-area-card h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
}

.facilities-area-card > p {
    margin: 0;
    color: rgba(255,255,255,0.53);
    font-size: 13px;
    line-height: 1.65;
}

.facilities-area-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 20px;
}

.facilities-area-split > div,
.facilities-area-single {
    padding: 14px;
    background: rgba(255,255,255,0.045);
    border-radius: 10px;
}

.facilities-area-split span,
.facilities-area-single span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.38);
    font-size: 10px;
    text-transform: uppercase;
}

.facilities-area-split strong,
.facilities-area-single strong {
    color: #fff;
    font-size: 14px;
}

.facilities-area-single {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-top: 20px;
}

.facilities-area-single > i {
    color: #bd6bd9;
}


/* TouchBet */

.facilities-touchbet {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 23px;
    margin-top: 27px;
    padding: 37px 40px;
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 21px;
}

.facilities-touchbet-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #770c9d;
    color: #fff;
    font-size: 20px;
}

.facilities-touchbet-content span {
    display: block;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.facilities-touchbet-content h3 {
    margin: 6px 0 13px;
    color: #fff;
    font-size: 23px;
}

.facilities-touchbet-content p {
    margin: 0 0 11px;
    color: rgba(255,255,255,0.59);
    font-size: 14px;
    line-height: 1.68;
}


/* Comfort */

.facilities-comfort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.facilities-comfort-item {
    display: flex;
    gap: 15px;
    padding: 25px 22px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.facilities-comfort-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    border-radius: 11px;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
}

.facilities-comfort-item span {
    display: block;
    color: #bd6bd9;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.facilities-comfort-item strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
}

.facilities-comfort-item p {
    margin: 7px 0 0;
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    line-height: 1.55;
}


/* Note */

.facilities-note {
    display: flex;
    gap: 13px;
    margin-top: 27px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;
}

.facilities-note > i {
    margin-top: 4px;
    color: #bd6bd9;
}

.facilities-note span {
    display: block;
    margin-bottom: 5px;
    color: #bd6bd9;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.facilities-note p {
    margin: 0;
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    line-height: 1.62;
}


/* Responsive */

@media (max-width: 1199px) {

    .facilities-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {

    .facilities-section {
        padding: 80px 0;
    }

    .facilities-overview {
        grid-template-columns: 1fr;
    }

    .facilities-areas-grid,
    .facilities-comfort-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .facilities-heading h2 {
        font-size: 34px;
    }

    .facilities-heading p {
        font-size: 16px;
    }

    .facilities-facts {
        grid-template-columns: 1fr;
    }

    .facilities-touchbet {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {

    .facilities-section {
        padding: 65px 0;
    }

    .facilities-heading h2 {
        font-size: 30px;
    }

    .facilities-overview-main {
        padding: 28px 23px;
    }

    .facilities-area-split {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   LOCATION, ARRIVAL & PARKING — LIGHT
========================================= */

.location-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(119, 12, 157, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(119, 12, 157, 0.05),
            transparent 28%
        ),
        #ffffff;
    overflow: hidden;
}


/* Heading */

.location-heading {
    max-width: 870px;
    margin: 0 auto 55px;
}

.location-eyebrow,
.location-small-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #770c9d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.location-heading h2 {
    margin: 0 0 20px;
    color: #171419;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.location-heading h2 span {
    color: #770c9d;
}

.location-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #6d666f;
    font-size: 17px;
    line-height: 1.75;
}


/* Overview */

.location-overview {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
}

.location-address-card {
    padding: 42px;
    background: #171419;
    border-radius: 22px;
}

.location-address-card h3 {
    margin: 0;
    color: #fff;
    font-size: 33px;
}

.location-address-city {
    margin-top: 5px;
    color: #bd6bd9;
    font-size: 20px;
    font-weight: 700;
}

.location-address-card > p {
    margin: 23px 0 0;
    color: rgba(255,255,255,0.59);
    font-size: 14px;
    line-height: 1.72;
}

.location-address-facts {
    display: grid;
    gap: 12px;
    margin-top: 27px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.location-address-facts > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
}

.location-address-facts i {
    width: 20px;
    color: #bd6bd9;
}


/* Areas */

.location-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.location-area-card {
    padding: 30px 26px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 18px;
}

.location-area-highlight {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.07),
            #fff
        );
    border-color: rgba(119,12,157,0.18);
}

.location-area-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 13px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.location-area-card > span {
    display: block;
    color: #9861aa;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.location-area-card h3 {
    margin: 6px 0 12px;
    color: #19161b;
    font-size: 22px;
}

.location-area-card > p {
    margin: 0;
    color: #706970;
    font-size: 13px;
    line-height: 1.66;
}

.location-area-note {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e6e0e8;
    color: #635c65;
    font-size: 12px;
}

.location-area-note i {
    color: #770c9d;
}


/* First note */

.location-first-note {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 23px;
    margin-top: 26px;
    padding: 36px 39px;
    background: #f4f0f6;
    border-radius: 20px;
}

.location-first-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #770c9d;
    color: #fff;
    font-size: 20px;
}

.location-first-note span {
    display: block;
    color: #770c9d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.location-first-note h3 {
    margin: 6px 0 11px;
    color: #19161b;
    font-size: 23px;
}

.location-first-note p {
    margin: 0 0 10px;
    color: #6e6770;
    font-size: 14px;
    line-height: 1.68;
}


/* Generic heading */

.arrival-block,
.parking-block {
    margin-top: 70px;
}

.location-section-heading {
    max-width: 730px;
    margin-bottom: 29px;
}

.location-section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #770c9d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.location-section-heading h3 {
    margin: 0 0 10px;
    color: #19161b;
    font-size: 29px;
}

.location-section-heading p {
    margin: 0;
    color: #706970;
    font-size: 14px;
    line-height: 1.68;
}


/* Arrival */

.arrival-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.arrival-card {
    padding: 29px 25px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 17px;
}

.arrival-card-icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(119,12,157,0.09);
    color: #770c9d;
}

.arrival-card > span {
    display: block;
    color: #9861aa;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.arrival-card h4 {
    margin: 6px 0 11px;
    color: #19161b;
    font-size: 20px;
}

.arrival-card > p {
    margin: 0;
    color: #716a73;
    font-size: 13px;
    line-height: 1.65;
}

.arrival-card ul {
    margin: 20px 0 0;
    padding: 17px 0 0;
    border-top: 1px solid #e7e1e9;
}

.arrival-card ul li {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    color: #6f6871;
    font-size: 12px;
}

.arrival-card ul li i {
    margin-top: 3px;
    color: #770c9d;
    font-size: 10px;
}

.arrival-lines {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.arrival-lines div {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #770c9d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.arrival-card-small {
    color: #878088 !important;
    font-size: 11px !important;
}

.arrival-walk-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 20px;
}

.arrival-walk-facts div {
    padding: 15px;
    background: #f1edf3;
    border-radius: 10px;
}

.arrival-walk-facts strong {
    display: block;
    color: #770c9d;
    font-size: 17px;
}

.arrival-walk-facts span {
    display: block;
    margin-top: 3px;
    color: #817982;
    font-size: 10px;
}


/* Parking */

.parking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.parking-card {
    padding: 31px 28px;
    background: #faf9fb;
    border: 1px solid #e9e4eb;
    border-radius: 18px;
}

.parking-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.08),
            #fff
        );
    border-color: rgba(119,12,157,0.20);
}

.parking-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.parking-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #770c9d;
    color: #fff;
}

.parking-card-head span {
    display: block;
    color: #9861aa;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.parking-card-head h4 {
    margin: 5px 0 0;
    color: #19161b;
    font-size: 20px;
}

.parking-card > p {
    margin: 0;
    color: #706970;
    font-size: 13px;
    line-height: 1.66;
}

.parking-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.parking-card-stats div,
.parking-theater-stat {
    padding: 17px;
    background: #f1edf3;
    border-radius: 11px;
}

.parking-card-stats strong,
.parking-theater-stat strong {
    display: block;
    color: #770c9d;
    font-size: 25px;
}

.parking-card-stats span,
.parking-theater-stat span {
    color: #817982;
    font-size: 10px;
}

.parking-theater-stat {
    margin-top: 22px;
}

.parking-card-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 19px;
    border-top: 1px solid #e6e0e8;
}

.parking-card-info > div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.parking-card-info i {
    color: #770c9d;
}

.parking-card-info span {
    display: block;
    color: #8a828c;
    font-size: 10px;
}

.parking-card-info strong {
    color: #29242b;
    font-size: 12px;
}


/* Parking features */

.parking-features {
    margin-top: 26px;
    padding: 34px 37px;
    background: #171419;
    border-radius: 20px;
}

.parking-features-heading {
    margin-bottom: 25px;
}

.parking-features-heading span {
    display: block;
    margin-bottom: 5px;
    color: #bd6bd9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.parking-features-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 23px;
}

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

.parking-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 4px 20px;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.parking-feature:first-child {
    padding-left: 0;
}

.parking-feature:last-child {
    border-right: 0;
}

.parking-feature > i {
    color: #bd6bd9;
    font-size: 17px;
}

.parking-feature span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.38);
    font-size: 10px;
}

.parking-feature strong {
    color: #fff;
    font-size: 12px;
}


/* Parking note */

.parking-note {
    display: flex;
    gap: 13px;
    margin-top: 22px;
    padding: 17px 19px;
    background: #f2edf4;
    border-radius: 12px;
}

.parking-note > i {
    margin-top: 3px;
    color: #770c9d;
}

.parking-note span {
    display: block;
    margin-bottom: 4px;
    color: #770c9d;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.parking-note p {
    margin: 0;
    color: #6f6871;
    font-size: 12px;
    line-height: 1.6;
}


/* Summary */

.location-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 27px;
    padding: 29px 31px;
    background: #f7f4f8;
    border: 1px solid #e7e1e9;
    border-radius: 18px;
}

.location-summary-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 4px 18px;
    border-right: 1px solid #ded7e1;
}

.location-summary-item:first-child {
    padding-left: 0;
}

.location-summary-item:last-child {
    border-right: 0;
}

.location-summary-item > i {
    color: #770c9d;
    font-size: 17px;
}

.location-summary-item span {
    display: block;
    margin-bottom: 3px;
    color: #8a828c;
    font-size: 10px;
}

.location-summary-item strong {
    color: #29242b;
    font-size: 12px;
}


/* Responsive */

@media (max-width: 1199px) {

    .location-heading h2 {
        font-size: 42px;
    }

    .parking-features-grid,
    .location-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
}

@media (max-width: 991px) {

    .location-section {
        padding: 80px 0;
    }

    .location-overview {
        grid-template-columns: 1fr;
    }

    .arrival-grid {
        grid-template-columns: 1fr;
    }

    .parking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .location-heading h2 {
        font-size: 34px;
    }

    .location-heading p {
        font-size: 16px;
    }

    .location-areas {
        grid-template-columns: 1fr;
    }

    .location-first-note {
        grid-template-columns: 1fr;
        padding: 29px 24px;
    }

    .parking-features-grid,
    .location-summary {
        grid-template-columns: 1fr;
    }

    .parking-feature,
    .parking-feature:first-child,
    .location-summary-item,
    .location-summary-item:first-child {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .location-summary-item {
        border-bottom-color: #ded7e1;
    }

    .parking-card-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {

    .location-section {
        padding: 65px 0;
    }

    .location-heading h2 {
        font-size: 30px;
    }

    .location-address-card,
    .parking-card {
        padding: 28px 23px;
    }

    .parking-card-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FAQ — DARK SECTION
========================================= */

.faq-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(119,12,157,0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(119,12,157,0.11),
            transparent 28%
        ),
        #151319;
    overflow: hidden;
}


/* Heading */

.faq-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.faq-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd6bd9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.faq-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
}

.faq-heading h2 span {
    color: #ad50cd;
}

.faq-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.64);
    font-size: 17px;
    line-height: 1.75;
}


/* Grid */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: start;
}


/* Item */

.faq-item {
    background: #201d24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(189,107,217,0.22);
}


/* Question */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 23px;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 50%;
    background: rgba(119,12,157,0.18);
    color: #bd6bd9;
    font-size: 12px;
    transition: 0.3s ease;
}


/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 23px 22px;
    color: rgba(255,255,255,0.56);
    font-size: 14px;
    line-height: 1.68;
}

.faq-answer a {
    display: inline;
    color: #bd6bd9;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    color: #d58dea;
}


/* Active */

.faq-item.active {
    background:
        linear-gradient(
            145deg,
            rgba(119,12,157,0.13),
            rgba(255,255,255,0.03)
        ),
        #201d24;
    border-color: rgba(189,107,217,0.24);
}

.faq-item.active .faq-answer {
    max-height: 350px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #770c9d;
    color: #fff;
}


/* Responsive */

@media (max-width: 991px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-heading h2 {
        font-size: 42px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-heading p {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 575px) {

    .faq-section {
        padding: 65px 0;
    }

    .faq-heading h2 {
        font-size: 30px;
    }
}

/* =========================================
   LEGAL PAGES
========================================= */
.legal-page { background: #f7f4f8; color: #241f26; }
.legal-page header { z-index: 1000; }
.legal-hero {
    padding: 155px 0 80px;
    background:
        radial-gradient(circle at 12% 20%, rgba(119,12,157,.30), transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(119,12,157,.12), transparent 30%),
        #151319;
    color: #fff;
}
.legal-hero-inner { max-width: 890px; }
.legal-hero-icon {
    width: 58px; height: 58px; display:flex; align-items:center; justify-content:center;
    border-radius: 15px; background:#770c9d; color:#fff; font-size:22px; margin-bottom:24px;
}
.legal-kicker {
    display:block; color:#c777e2; text-transform:uppercase; letter-spacing:1.7px;
    font-weight:700; font-size:12px; margin-bottom:10px;
}
.legal-hero h1 { color:#fff; font-size:52px; line-height:1.08; margin:0 0 18px; font-weight:700; }
.legal-hero p { color:rgba(255,255,255,.68); font-size:18px; line-height:1.75; max-width:780px; margin:0; }
.legal-update {
    display:inline-flex; margin-top:26px; padding:9px 14px; border-radius:20px;
    border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.05);
    color:rgba(255,255,255,.58); font-size:12px;
}
.legal-content-section { padding:80px 0 105px; background:#f7f4f8; }
.legal-layout { display:grid; grid-template-columns:260px minmax(0,1fr); gap:34px; align-items:start; }
.legal-toc {
    position:sticky; top:105px; padding:25px 22px; background:#171419; border-radius:18px;
    border:1px solid rgba(255,255,255,.06); box-shadow:0 16px 35px rgba(20,14,23,.10);
}
.legal-toc > span { display:block; color:#bd6bd9; text-transform:uppercase; letter-spacing:1.2px; font-size:11px; font-weight:700; margin-bottom:14px; }
.legal-toc a { display:block; color:rgba(255,255,255,.66); font-size:13px; line-height:1.45; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06); transition:.25s; }
.legal-toc a:last-child { border-bottom:0; }
.legal-toc a:hover { color:#fff; padding-left:5px; }
.legal-article { min-width:0; }
.legal-card {
    position:relative; padding:38px 40px; margin-bottom:18px; background:#fff;
    border:1px solid #e9e4eb; border-radius:20px; box-shadow:0 12px 32px rgba(25,18,30,.045);
}
.legal-card-accent { background:linear-gradient(145deg, rgba(119,12,157,.07), #fff 58%); border-color:rgba(119,12,157,.18); }
.legal-section-number { display:block; color:#770c9d; font-size:11px; font-weight:700; letter-spacing:1.2px; margin-bottom:6px; }
.legal-card h2 { color:#1b171d; font-size:27px; line-height:1.25; margin:0 0 16px; }
.legal-card h3 { color:#1b171d; font-size:18px; margin:0 0 7px; }
.legal-card p { color:#686169; font-size:15px; line-height:1.78; margin:0 0 13px; }
.legal-card p:last-child { margin-bottom:0; }
.legal-checklist { margin:15px 0 18px; padding:0; }
.legal-checklist li { position:relative; padding:10px 0 10px 28px; color:#686169; font-size:14px; line-height:1.6; border-bottom:1px solid #eee9f0; }
.legal-checklist li:last-child { border-bottom:0; }
.legal-checklist li:before { content:'•'; position:absolute; left:8px; top:8px; color:#770c9d; font-size:20px; }
.warning-list li:before { content:'!'; font-size:12px; width:18px; height:18px; display:flex; align-items:center; justify-content:center; top:11px; left:2px; border-radius:50%; background:rgba(119,12,157,.10); font-weight:700; }
.rg-rule-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:18px; }
.rg-rule-grid > div { padding:22px; background:#f7f4f8; border:1px solid #ebe5ed; border-radius:14px; }
.rg-rule-grid i { color:#770c9d; font-size:20px; margin-bottom:14px; }
.rg-rule-grid h3 { font-size:17px; margin-bottom:7px; }
.rg-rule-grid p { font-size:13px; line-height:1.6; }
.footer-address { color:rgba(255,255,255,.55) !important; font-size:14px !important; line-height:1.5 !important; }
.footer-legal-note { display:flex; gap:12px; padding:15px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; }
.footer-legal-note i { color:#bd6bd9; margin-top:3px; }
.footer-legal-note p { color:rgba(255,255,255,.58); margin:0; font-size:12px; line-height:1.55; }
@media (max-width: 1199px) {
    .legal-hero h1 { font-size:46px; }
    .legal-layout { grid-template-columns:230px minmax(0,1fr); }
}
@media (max-width: 991px) {
    .legal-hero { padding:135px 0 65px; }
    .legal-hero h1 { font-size:40px; }
    .legal-layout { grid-template-columns:1fr; }
    .legal-toc { position:relative; top:auto; }
    .legal-toc { display:grid; grid-template-columns:repeat(2,1fr); gap:0 18px; }
    .legal-toc > span { grid-column:1/-1; }
}
@media (max-width: 767px) {
    .legal-hero h1 { font-size:34px; }
    .legal-hero p { font-size:16px; }
    .legal-content-section { padding:60px 0 80px; }
    .legal-card { padding:30px 25px; }
    .legal-card h2 { font-size:23px; }
    .rg-rule-grid { grid-template-columns:1fr; }
}
@media (max-width: 575px) {
    .legal-hero { padding:120px 0 55px; }
    .legal-hero h1 { font-size:30px; }
    .legal-toc { grid-template-columns:1fr; }
    .legal-card { padding:26px 21px; }
}

/* ===== FULL SCREEN HOME BANNER ===== */

.home_section {
    min-height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home_section > .container {
    width: 100%;
}

.home_section .row {
    min-height: calc(100vh - 80px);
    align-items: center;
}

/* Левая часть с текстом */
.home_section .home_content {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Правая часть с рулеткой */
.home_section .image_section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Рулетка не должна становиться слишком огромной */
.home_section .circle_img {
    width: min(42vw, 650px);
    height: min(42vw, 650px);
}

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


/* ===== TABLET / MOBILE ===== */

@media (max-width: 991px) {

    .home_section,
    .home_section .row,
    .home_section .home_content,
    .home_section .image_section {
        min-height: auto;
    }

    .home_section {
        padding: 80px 0;
    }

    .home_section .home_content {
        padding-bottom: 50px;
    }

    .home_section .circle_img {
        width: min(80vw, 500px);
        height: min(80vw, 500px);
        margin: 0 auto;
    }
}