/* Table of Contents
----------------------------------


/*------------------------------ (00)-Global CSS ------------------------------*/
/*   
0- Global CSS    
1- Heading CSS
2- Button CSS   
3- Logo Area CSS 
4- Page Title CSS  
5- Header Area CSS 
6- Footer Area CSS
7- Scroll-Top Area CSS
8- Form CSS
9- Dark Form CSS
10- Swiper Pagination CSS
11- Sidebar Heading CSS
12- Sidebar CSS
*/

/*------------------------------ (01)-Home ------------------------------*/
/*
1- Home
2- Features
3- Counter
4- Section Slider
5- Why Attend
6- Banner
7- Speaker Slider
8- Testimonials
9- Newsletter
10- Blogs
11- Sponsor Slider
*/

/*------------------------------ (02)-About ------------------------------*/

/*--------------- PAGES ---------------*/
/*
1- About Us
2- Team
3- Team Single
4- Testimonials
5- Faqs
*/

/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Tab Information
02- Page Single
03- Page Sidebar
04- Custom Form
*/

/*--------------- PAGES ---------------*/
/*
1- Gallery
2- Portfolio
3- Portfolio Single
4- Services
5- Service Single
6- Tickets
7- Registration
8- Sponsors
9- Venue
*/

/*------------------------------ (04)-Speaker ------------------------------*/
/*
1- Speakers
2- Speaker Single
*/

/*------------------------------ (05)-Schedule ------------------------------*/
/*
1- Schedule Tab
2- Schedule List
3- Schedule Event
4- Schedule Single
*/

/*------------------------------ (06)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Item 
02- Comment 
03- Pages-No
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Blog Single 
*/

/*------------------------------ (07)-Shop ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Filter
02- Shop Header
03- Quantity Box
04- Product-Item
05- Shop-Title
06- Cart-Summary
07- Radio Button
08- Account-Form
*/

/*--------------- PAGES ---------------*/
/*
1- Shop Grid
2- Shop Standard
3- Product Single
4- Wishlist
5- Cart
6- Checkout
7- Login
8- Register
*/

/*------------------------------ (08)-Contact ------------------------------*/



/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color: #f112a2;
    --secondary-color: #4F1787;
    --black: #000; 
    --white: #fff;
    --light-grey: #E6E6E6;
    --grey: #666; 
    --custom-bg: rgba(0, 0, 0, 0.8);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 30px 30px 0 0 / 30px 30px 20px 20px;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --custom-border: 0.5rem solid var(--main-color);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --custom-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

*{
    font-family: "Poppins", sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0; 
    text-decoration: none;
    text-transform: none !important; 
    border: none;
    outline: none;
}

*:not(.portfolio-item){
    -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

body{
    background: #f2f3f8;
    overflow-x: hidden;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 3rem 5%;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    border-radius: var(--border-radius-2);
    background: var(--main-color);
}

p{
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--grey);
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*----- 1- Heading CSS -----*/
.heading{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.heading .sub{
    letter-spacing: 0.2rem;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
}

.heading h2{
    text-align: center;
    font-size: 4rem;  
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    line-height: 1.2;
}

.linear-bg .heading h2{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
.btn{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.4rem 3rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background-image: -webkit-linear-gradient(306deg, var(--secondary-color), var(--main-color), var(--secondary-color));
    background-image:         linear-gradient(144deg, var(--secondary-color), var(--main-color), var(--secondary-color));
    background-size: 300% 100%;
    border-radius: var(--border-radius-2);
    cursor: pointer;
}

.btn:hover{
    background-position: 100% 0px; 
}

/*----- 3- Logo Area CSS -----*/  
.logo{
    z-index: 100000;
}

.logo img{
    height: 6rem;
    width: auto;
}

/*----- 4- Page Title CSS -----*/
.page-title{
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../../assets/images/Background/PageTitle.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../../assets/images/Background/PageTitle.jpg");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0rem 5%;
    padding-top: 8rem;
    min-height: 40rem;
}

.page-title .title{
    border-left: var(--custom-border);
    padding-left: 1rem;
}

.page-title .title h2{
    color: var(--white);
    line-height: 1.2;
    font-size: 5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.page-title .link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
}

.page-title .link a{
    font-weight: 600; 
    color: var(--white);
}

.page-title .link a:hover{
    color: var(--main-color);
}

.page-title .link i{
    color: var(--white);
}

.page-title .link span{
    font-weight: 500;
    color: var(--white);
}

/*----- 5- Header Area CSS -----*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .header-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 5%;
}

.header.active .header-1{
    display: none;
}

.header .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    list-style-type: none;
}

.header .header-contacts li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--white);
}

.header .header-contacts span{
    text-transform: none;
}

.header .social-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    list-style-type: none;
}

.header .social-contacts li a{
    height: 3rem;
    width: 3rem;
    font-size: 1.6rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .social-contacts li a:hover{
    color: var(--main-color);
}

.header .header-2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 8rem;
    padding: 0rem 5%;
}

.header.active .header-2{
    background-color: var(--black);
    border-bottom: 0.2rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header #menu-btn{
    cursor: pointer;
    display: none;
}

.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 2rem;
}

.mobile-menu{
    display: none;
}

.header .container{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5rem;
}

.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    gap: 0.5rem;
}

.header .navbar .nav-btn:hover{
    color: var(--main-color);
}

.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--black);
    width: 20rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
    -webkit-transition:  all 0.5s;
    -o-transition:  all 0.5s;
    transition:  all 0.5s;
    z-index: 1000;
    overflow: hidden;
}

.header .dropdown-menu:hover button{
    color: var(--main-color);
}

.header .dropdown-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: var(--custom-border);
}

.header .dropdown-content a{
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.header .dropdown-content a:hover{
    background-color: var(--main-color);
}

.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 1rem;
}

.header .icon-container .icon{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.header .icon-container .icon:hover{ 
    color: var(--main-color);
}

.header .search-container{
    position: absolute;
    top: 100%;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    background: var(--white);
    width: 40rem;
    padding: 1.5rem 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    opacity: 0;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease;
    -o-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    border-radius: 50rem;
    -webkit-transform: translateX(300%);
        -ms-transform: translateX(300%);
            transform: translateX(300%);
}

.header .search-container.active{
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
}

.header .search-container input{
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--black);
    font-size: 1.8rem;
    text-transform: none;
}

.header .search-container button{
    color: var(--secondary-color);
    background-color: transparent;
    font-size: 2rem;
    padding-right: 0.5rem;
    padding-left: 1rem;
}

.header .search-container button:hover{
    color: var(--main-color);
    cursor: pointer;
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Footer.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Footer.jpg");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
}

.footer .footer-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.footer .box-container{
    max-width: 80rem;
    padding: 3rem 5%;
    text-align: center;
}

.footer-item > p{
    padding-top: 1.5rem;
    font-size: 1.5rem;
} 

.footer-item p{
    color: var(--white); 
    font-weight: 500;
}

.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}

.footer-item .social a{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 0.15rem solid var(--white);
    border-radius: 50%;
}

.footer-item .social a i{
    color: var(--white);
    font-size: 1.7rem;
}

.footer-item .social a:hover{
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.footer-item .social a:hover i{
    color: var(--white);
}

.footer-item .links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 0.15rem solid rgba(255, 255, 255, 0.7);
}

.footer-item .links a{ 
    font-size: 1.6rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

.footer-item .input-field{
    margin-bottom: 1rem;
}

.footer-item .dark-form{
    max-width: 40rem;
    margin: 0 auto;
}

.footer-item .dark-form .alert {
    display: block;
    font-size: 1.6rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    background-color: var(--main-color);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

/*----- 7- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 6rem;
    width: 6rem;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.scroll-top:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--secondary-color) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
         -o-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;

}
  
.form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
  
.form .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--secondary-color);
    padding: 1rem 1.5rem; 
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-1);
    text-transform: none;
}

.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}
.form .box::-moz-placeholder{
    text-transform: capitalize;
}
.form .box:-ms-input-placeholder{
    text-transform: capitalize;
}
.form .box::placeholder{
    text-transform: capitalize;
}

.form .box:focus{
    border-color: var(--main-color);
}

.form textarea{
    resize: none;
    height: 20rem;
}

.form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

/*----- 9- Dark Form CSS -----*/
.dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:hover,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            -o-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.dark-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark-form .input-field{
    border: 1.2px solid rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    border-radius: var(--border-radius-1);
}

.dark-form .input-box > .input-field{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
}

.dark-form .input-field:hover{
    border-color: var(--main-color);
}

.dark-form .input-field label {
    color: transparent;
    -webkit-text-stroke: 1px var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.dark-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form textarea{
    height: 15rem;
    resize: none;
}

.dark-form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dark-form .checkbox-label {
    color: var(--white);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.dark-form .checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}
  
.dark-form .checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}

.dark-form .select option{
    color: var(--grey);
}

.dark-form .select{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border: 1.2px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-1);
    width: 100%;
}
  
.dark-form .select-container{
    height: 100%;
    min-width: 100%;
    position: relative;
}

.dark-form .select-box{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    color: var(--white);
    background-color: transparent;
    padding: 1.5rem;
    font-size: 1.6rem;
    padding-left: 4.5rem;
}

.dark-form .select-container label{
    position: absolute;
    height: 100%;
    top: 0;
    left: 1.5rem;
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .select-container .icon-container{
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            pointer-events: none;
}

.dark-form .select-container .icon-container i{
    font-size: 1.6rem;
    color: var(--white);
}

/*----- 10- Swiper Pagination CSS -----*/
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 4rem;
    border-radius: 0;
    background: var(--white);
    opacity: 0.7;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet-active{
    background: var(--main-color) !important;
}

/*----- 11- Sidebar Heading CSS -----*/
.sidebar-heading h2{
    position: relative;
    font-size: 3rem; 
    font-weight: 500;
    word-spacing: 1px; 
    color: var(--secondary-color);
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
}

.sidebar-heading h2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 2px;
    content: "";
    background-color: var(--main-color);
}

/*----- 12- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 28rem; 
        flex: 1 1 28rem;  
}

.sidebar .sidebar-item{
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 1.5rem;
    border-radius: var(--border-radius-3);
}

/*-- 1- Search --*/
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 5rem;
}

.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem; 
    overflow: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

.sidebar .search .input-box input:focus{ 
    border-color: var(--main-color);
}

.sidebar .search .input-box button{
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

.sidebar .search .input-box button:hover{
    background-color: var(--main-color);
}

/*-- 2- Category --*/ 
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.5rem 0rem;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.1);
}

.sidebar .category a:last-child{
    margin-bottom: 0;
}

.sidebar .category a span{
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.sidebar .category a span i{
    font-size: 1.8rem;
    color: var(--main-color);
}

.sidebar .category a p{
    font-size: 1.5rem;
}

.sidebar .category a:hover span,
.sidebar .category a:hover p{
    color: var(--main-color);
}

/*-- 3- Post Items --*/
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar .post-item:last-child{
    margin-bottom: 0;
}

.sidebar .post-item img{
    height: 8rem;
    width: 8rem;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.sidebar .recent-posts .post-item img{
    width: 10rem;
}

.sidebar .post-item a{
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.sidebar .recent-posts .post-item a{
    font-size: 1.8rem;
}

.sidebar .post-item a:hover{
    color: var(--main-color);
}

.sidebar .post-item .price p{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--main-color);
}

.sidebar .post-item .price span{
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey);
    text-decoration: line-through;
    padding-left: 0.2rem;
}

/*-- 4- Tags --*/
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.7rem;
}

.sidebar .tag-item{
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    padding: 1rem 1.6rem;
}

.sidebar .tag-item:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*----- 1- Home-----*/
.home{
    padding: 0;
    position: relative;
    height: 70rem;
}

.home .content{ 
    padding: 10rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.home .content .text{
    width: 90rem;
    margin-top: 8rem;
}

.home .content h5{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.home .content h1{
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--white);
    letter-spacing: 0.1rem;
    line-height: 1.1;
}

.home .content h1 span{
    color: var(--main-color);
}

.home .content .counter{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 3rem;
}

.home .counter-item h3{
    color: var(--white);
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home .counter-item span{
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*----- 2- Features -----*/
.features{
    padding-bottom: 2rem;
}

.features .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.feature-item {
    cursor: pointer;
    text-align: center;
    background-color: var(--black);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-3);
}

.feature-item i{
    height: 8rem;
    width: 9rem;
    margin: 0rem auto;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.feature-item h3{
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-item p{
    color: var(--light-grey);
}

/*----- 3- Counter -----*/
.counting{
    padding: 4rem 5%;
    margin: 1rem 0;
    display: -webkit-box;  
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 4rem;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Counter.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
}

.counting .box i{
    margin: 0 auto;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 4.5rem;
}

.counting .box .count{
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 500;
}

.counting .box h3{
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 400;
}

/*----- 4- Section Slider -----*/
.section-slider{
    overflow: hidden;
    padding: 0.5rem;
}

/*----- 5- Why Attend -----*/
.whyAttend{
    padding: 0;
}

.whyAttend .box-container{
    background-image: url("../../assets/images/Background/whyAttend.jpg");
}

.whyAttend .content p{
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--light-grey);
} 

.whyAttend .whyAttend-points{
    list-style-type: none;
    padding-top: 0.5rem;
}

.whyAttend .whyAttend-points li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
}

.whyAttend .whyAttend-points li i{
    height: 7rem;
    width: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.4rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    background-color: rgba(241, 18, 162, 0.9);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.whyAttend .whyAttend-points .text{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
}

.whyAttend .whyAttend-points li h5{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.whyAttend .whyAttend-points li p{
    color: var(--light-grey);
}

/*----- 6- Banner -----*/
.banner{
    padding: 8rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("../../assets/images/Background/Banner.jpg");
    background-position: left;
    background-size: cover;
}

.banner .content{
    width: 70rem;
}

.banner .heading{
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
    padding-bottom: 0;
}

.banner h2{
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

/*----- 7- Speaker Slider -----*/
.speaker-slider{
    overflow: hidden;
    padding: 0.5rem;
}

/*----- 8- Testimonials -----*/
.testimonial-bg{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/*----- 9- Newsletter -----*/
.newsletter-subscribe{
    padding: 8rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url("../../assets/images/Background/Newsletter.jpg");
    background-position: center;
    background-size: cover;
}

.newsletter-subscribe .content{
    width: 70rem;
    text-align: center;
}

.newsletter-subscribe h2{
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--white);
}

.newsletter-subscribe p{
    letter-spacing: 0.15rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.newsletter-subscribe .box-container {
    max-width: 60rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-2);
}

.newsletter-subscribe input{
    padding: 0rem 1.5rem;
    width: 100%;
    color: var(--secondary-color);
    background-color: var(--white);
    text-transform: none;
    font-size: 1.5rem;
}

.newsletter-form .alert {
    min-height: 3.5rem;
    display: block;
    font-size: 1.6rem;
    color: var(--white);
    padding-top: 1rem;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

/*----- 10- Blogs -----*/
.blog.main .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

/*----- 11- Sponsor Slider -----*/
.home-sponsors{
    background-color: rgba(0, 0, 0, 0.05);
}

.sponsors .sponsor-slider{
    overflow: hidden;
}

/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 0;
}

/*----- 1- About Us -----*/
.about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
}

.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.about .sub-image{
    height: 50rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.about .image img{
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.about .sub-image.one img{
    height: 50%;
}

.about .sub-image.two{
    margin-top: 2rem;
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.about .heading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.about .heading h2{
    text-align: left;
}

.about .content p{
    padding-bottom: 1rem;
}

.about .about-features{
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.about .about-features li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
}

.about .about-features i{
    color: var(--main-color);
}

.about .about-features span{
    color: var(--grey);
}

/*----- 2- Team -----*/
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.team-item {
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 40rem;
    border-bottom: var(--custom-border);
    overflow: hidden;
    border-radius: var(--border-radius-3);
}

.team-item .content{
    position: absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    background:         linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
}

.team-item .text{
    text-align: center;
    padding-top: 1rem;
}

.team-item .content h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.2rem;
}

.team-item .content h3:hover{
    color: var(--main-color);
}

.team-item .content p{
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
}

.team-item .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--main-color);
    border-radius: 5rem;
    padding: 0.5rem 1.5rem;
}

.team-item .icon-container a{
    height: 3rem;
    width: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.7rem;
    color: var(--white);
}

.team-item .icon-container a:hover{
    color: var(--secondary-color);
}

/*----- 3- Team Single -----*/
.team-single .team-intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-3);
}

.team-single .image{ 
    width: 40rem;
    height: 50rem;
    border-radius: var(--border-radius-3);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.team-single .information{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

.team-single .information h3{
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.team-single .information h5{
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
}

.team-single .information .team-about{
    padding-top: 1.5rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.team-single .text{
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.7;
}

.team-single .team-personal-info{
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.team-single .team-personal-info li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.team-single .team-personal-info i{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-right: 0.5rem;
}

.team-single .team-personal-info h6{
    font-size: 2rem;
    color: var(--secondary-color);
}

.team-single .team-personal-info span{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--grey);
    text-transform: none;
}

.team-single .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.team-single .icon-container a{
    height: 4.5rem;
    width: 4.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.team-single .icon-container a:hover{
    background: var(--secondary-color);
}

.team-single .page-info{
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
}

.team-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.team-single h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.team-single .sub-section{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
            flex: 1 1 40rem;
}

.team-single .skills .box{
    padding: 1rem 0;
}

.team-single .skills .box h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.team-single .skills .box .progress-bar{
    width: 100%;
    background: var(--secondary-color);
    overflow: hidden;
    height: 1.2rem;
    border-radius: 50rem;
}
 
.team-single .skills .box .progress-bar span{
    display: block;
    height: 100%;
    background: var(--main-color);
}

.team-single .events .box-container{
    padding-top: 1rem;
}

/*----- 4- Testimonials -----*/
.testimonial-slider{
    overflow: hidden;
    position: relative;
    padding-bottom: 4rem;
}

.testimonial .swiper-pagination-bullet{
    background: var(--secondary-color);
    opacity: 0.9;
}

.testi-item{
    background-color: var(--black);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.testi-item .content{
    padding: 4rem 3rem;
}

.testi-item .rating i{
    font-size: 2rem;
    color: var(--main-color);
}

.testi-item p{
    padding-top: 3rem;
    color: var(--light-grey);
}

.testi-item .bottom{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color:var(--main-color);
    padding: 2rem 3rem;
}

.testi-item .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

.testi-item img{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
}

.testi-item h4{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}

.testi-item h6{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-grey);
}

.testi-item .fa-quote-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 7rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

/*----- 5- Faqs -----*/
.faq .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

.accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

.accordion{
    background: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius-1);
} 
 
.accordion:last-child{
    margin-bottom: 0rem;
}  

.accordion .accordion-heading{
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 1.8rem;
}

.accordion.active .accordion-heading {
    border-bottom: 0.3rem solid var(--main-color);
}

.accordion .accordion-heading i{
    height: 4rem;
    width: 4rem;
    border-radius: 0.2rem;
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.accordion .accordion-heading h3{
    color: var(--secondary-color);
}

.accordion.active .accordion-heading h3{
    color: var(--main-color);
}

.accordion.active .accordion-content{
    display: block;
}

.accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

.faq .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    height: 55rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (05)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Tab Informatin -----*/
.tab-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-buttons .button{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    color: var(--white);
    background-color: var(--secondary-color);
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--border-radius-1);
}

.tab-buttons .button:hover,
.tab-buttons .button.active{
    background-color: var(--main-color);        
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;
}

.tab-sections .tab-section{
    display: none;
}

.tab-sections .tab-section.active{
    display: block;
    margin-top: 2rem;
}

/*----- 02- Page Single -----*/
.page-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.page-single .sidebar .sidebar-item{
    margin-bottom: 0;
}

.page-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem; 
        flex: 1 1 75rem;
}

.page-info .image{
    height: 40rem;
}

.page-info .image img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.page-info .content{
    padding-top: 2rem;
}

.page-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    padding-bottom: 1rem;
}

.page-info .important{
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.page-info p{
    padding-bottom: 1rem;
}

.page-info .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.page-info .page-gallery img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.page-info .sub-section{
    padding-top: 2rem;
}

.page-info .sub-section p{
    margin-bottom: -1rem;
}

.page-info .sub-section ul{
    list-style: none;
}

.page-info .sub-section ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.page-info .sub-section ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-info .sub-section ul strong{
    color: var(--black);
}

/*----- 03- Page Sidebar -----*/
.page-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
    flex: 1 1 25rem;
    padding: 4rem;
    background: var(--black);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.page-sidebar .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 2rem;
    line-height: 1;
}

.page-sidebar .detail-item{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

.page-sidebar .detail-item:last-child{
    padding-bottom: 0;
}

.page-sidebar .detail-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    font-size: 1.8rem;
    color: var(--main-color);
}

.page-sidebar .detail-item h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    padding-bottom: 0.5rem;
}

.page-sidebar .detail-item .detail-content p{
    font-weight: 400;
    color: var(--light-grey);
    line-height: 1.3;
}

.page-sidebar .gmail{
    text-transform: none;
}

.page-sidebar .btn{
    margin-top: 3rem;
}

/*----- 04- Custom Form -----*/
.custom-form{
    padding: 2rem 0;
}

.custom-form .alert{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-left: 1rem;
}

.custom-form .box-container{
    background-position: center;
    background-size: cover;
}

.custom-form .content{
    padding: 4rem 5%;
    max-width: 90rem;
    padding-right: 20%;
    background: var(--custom-bg);
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.custom-form .heading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.custom-form .heading h2{
    text-align: left;
}

.custom-form form{
    width: 100%;
}

/*--------------- PAGES ---------------*/

/*----- 1- Gallery -----*/
.gallery .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 2rem;
    grid-template-areas: 
    'gallery-1 gallery-1 gallery-4'
    'gallery-2 gallery-3 gallery-4'
    'gallery-5 gallery-6 gallery-6'
    'gallery-5 gallery-7 gallery-8'
}

.gallery-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    cursor: pointer;
    height: 30rem;
}

/* Assign grid areas to Each Category Box */
.gallery-1 {
    grid-area: gallery-1;
}

.gallery-2 {
    grid-area: gallery-2;
}

.gallery-3 {
    grid-area: gallery-3;
}

.gallery-4 {
    grid-area: gallery-4;
    height: auto;
}

.gallery-5 {
    grid-area: gallery-5;
    height: auto;
}

.gallery-6 {
    grid-area: gallery-6;
}

.gallery-7 {
    grid-area: gallery-7;
}

.gallery-8 {
    grid-area: gallery-8;
}

.gallery-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    position: absolute;
    left: 10%;
    top: 10%;
    opacity: 0;
    width: 80%;
    height: 80%;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background-color:rgba(235, 54, 120, 0.9);
}

.gallery-item:hover .content{
    opacity: 1;
}

.gallery-item a i{
    scale: 0;
    font-size: 5rem;
    color: var(--white);
}

.gallery-item:hover a i{
    scale: 1;
}

/*----- 2- Portfolio -----*/
.portfolio .tab-buttons{
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio-item{
    width: 33.3%;
    padding: 0.8rem;
}

.portfolio-content{
    height: 30rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.portfolio-item .content{
    position: absolute;
    left: 2.5%;
    bottom: 0;
    width: 95%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0.9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2rem;
    gap: 1rem;
    border-radius: var(--border-radius-3);
}

.portfolio-item .text p{
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
}

.portfolio-item .text h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}

.portfolio-item .text h3:hover{
    color: var(--main-color);
}

.portfolio-item .view{
    height: 5rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    background-color: var(--main-color);
}
 
.portfolio-item a i{
    font-size: 2rem;
    color: var(--white);
}

/*----- 3- Portfolio Single -----*/

/*----- 4- Services -----*/
.services .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.service-item{
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 35rem;
    overflow: hidden;
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.service-item .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.service-item .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1.5rem;
    width: 100%;
}

.service-item i{
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-item h6{
    color: #02010100;
    font-size: 7rem;
    font-weight: 900;
    -webkit-text-stroke-width: 0.1rem;
    stroke-width: 0.2rem;
    -webkit-text-stroke-color: var(--white);
    stroke: var(--white);
    line-height: 1;
}

.service-item h3{
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.service-item h3:hover{
    color: var(--main-color);
}

.service-item p{
    color: var(--light-grey);
    padding-bottom: 2.5rem;
}

/*----- 5- Service Single -----*/
.service-single .faq .accordion-container{
    padding-top: 0.5rem;
}

/*----- 6- Tickets -----*/
.tickets .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

.ticket-item{
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-3);
    overflow: hidden;
}

.ticket-header, 
.ticket-footer{
    text-align: center;
    background-color: var(--black);
}

.ticket-header{
    position: relative;
}

.ticket-footer{
    padding: 2rem;
}

.ticket-item .top{
    height: 10rem;
    width: 100%;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(100% 0, 100% 65%, 50% 100%, 0 65%, 0 0);
            clip-path: polygon(100% 0, 100% 65%, 50% 100%, 0 65%, 0 0);
}

.ticket-item .intro{
    position: relative;
    padding: 2rem;
    padding-top: 7rem;
}

.ticket-item .icon{
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 12rem;
    width: 12rem;
    border: 1rem solid var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 4rem;
    color: var(--white);
    background-color: var(--main-color);
    margin: 0 auto;
    border-radius: 50%;
    z-index: 1;
}
  
.ticket-item h3{
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
}
  
.ticket-item p{
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
}
  
.ticket-item .price{
    color: var(--main-color);
    font-size: 4rem;
    font-weight: 600;
}

.ticket-item ul{ 
    border-top: 0.1rem dashed var(--light-grey);
    padding: 1rem 2rem;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
    
.ticket-item ul li{
    padding: 0.6rem 0;
    font-size: 1.6rem;
    color: var(--light-grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 0.7rem;
}
  
.ticket-item ul li i{
    height: 1.8rem;
    width: 1.8rem;
    color: var(--main-color);
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ticket-item .cut{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem;
    background-color: var(--black);
    height: 2rem;
    margin: 0 1rem;
    background-size: 0.4rem 0.2rem;
    background-repeat: repeat-x;
    background-position: center;
    position: relative;
}

.ticket-item .cut .dash{
    height: 0.1rem;
    width: 100%;
    border: 0.1rem dashed var(--light-grey);
}

.ticket-item .cut:before,
.ticket-item .cut:after{
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    border: 0.5rem solid transparent;
    border-top-color: var(--black);
    border-right-color: var(--black);
    border-radius: 100%;
    pointer-events:none;
}

.ticket-item .cut:before{
    left: -10px;
}

.ticket-item .cut:after{
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
    -ms-transform: translate(-50%, -50%) rotate(225deg);
        transform: translate(-50%, -50%) rotate(225deg);
    right: -3.9rem;
}

/*----- 7- Registration -----*/
.registration-form .box-container{
    background-image: url("../../assets/images/Background/Register.jpg");
}

.registration-form .content{
    padding: 4rem 5%;
    margin-left: auto;
    max-width: 85rem;
    padding-left: 20%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
}

/*----- 8- Sponsors -----*/
.sponsors .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.sponsor-item{
    width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/*----- 9- Venue -----*/
.venue{
    padding: 0;
}

.venue iframe{
    width: 100%;
    height: 30rem;
    margin: 1rem 0;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.venue-info{
    padding: 0;
}

.venue-info .box-container{
    background-image: url("../../assets/images/Background/venueInfo.jpg");
}

.venue-info .content{
    margin-left: auto;
    padding: 4rem;
    max-width: 70rem;
    background: var(--custom-bg);
    -webkit-clip-path: none;
            clip-path: none;
}

.venue-points{
    list-style-type: none;
}

.venue-points li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 0.4);
}

.venue-points li:last-child{
    border: 0;
    padding-bottom: 0;
}

.venue-points li i{
    height: 7rem;
    width: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.4rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    background-color: rgba(241, 18, 162, 0.9);
    border-radius: 50%;
}

.venue-points .text{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
}

.venue-points li h5{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
}

.venue-points li p{
    color: var(--light-grey);
}

.venue-points .gmail{
    text-transform: none;
}

.venue-gallery .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 2rem;
}
  
.venue-gallery .page-gallery img{
    height: 40rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.venue-features{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/venueFeatures.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/venueFeatures.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 5%;
}

.venue-features .venue-feature{
    text-align: center;
}

.venue-features .venue-feature i{
    height: 8rem;
    width: 10rem;
    font-size: 2.5rem;
    margin: 0rem auto;
    margin-bottom: 1.5rem;
    color: var(--white);
    background-color: rgba(241, 18, 162, 0.9);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.venue-features .venue-feature h3{
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.venue-features .venue-feature p{
    color: var(--light-grey);
}

.hotel-rooms .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.room-item{
    height: 40rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.room-item .content{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    background:         linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2rem;
}

.room-item .text h3{
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--white);
}

.room-item .text p{
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

/*------------------------------ (05)-Pages (End) ------------------------------*/




/*------------------------------ (04)-Speaker (Start) ------------------------------*/

/*----- 1- Speakers -----*/

/*----- 2- Speaker Single -----*/
.speaker-single .image{ 
    height: 60rem;
}

/*------------------------------ (04)-Speaker (End) ------------------------------*/




/*------------------------------ (05)-Schedule (Start) ------------------------------*/

/*----- 1- Schedule Tab -----*/
.schedule .tab-buttons{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.schedule .tab-buttons button{
    display: inline-block;
    padding: 2rem 3rem;
    letter-spacing: 0.1rem;
    font-size: 2.2rem;
}

.schedule-date{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.5rem;
}

.schedule-date h5{
    font-size: 3.5rem; 
    font-weight: 500;
    color: var(--secondary-color);
}

.schedule-date h2{
    position: relative;
    font-size: 3.5rem; 
    font-weight: 500;
    color: var(--main-color);
    line-height: 1;
    padding-bottom: 1.2rem;
}

.schedule-date h2:before{
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20rem;
    height: 2px;
    content: "";
    background-color: var(--main-color);
}

.schedule-item{
    border-radius: var(--border-radius-3);
    margin-bottom: 2rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.session-intro{
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
}

.session-intro .intro-content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(241, 18, 162, 0.8);
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    color: var(--white);
}

.session-intro .session-timing{
    font-size: 2.5rem;
    font-weight: 600;
}

.session-intro .session-venue{
    font-size: 2rem;
}

.schedule-item .session-topic{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50rem;
            flex: 1 1 50rem;
    padding: 2rem;
}

.schedule-item .session-topic h3{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.schedule-item .session-topic h3:hover{
    color: var(--main-color);
}

.session-speakers{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 25rem;
            flex: 1 1 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    border-left: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.session-speaker img{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
}

.session-speaker{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
}

.session-speaker .text{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 10rem;
            flex: 1 1 10rem;
}

.session-speaker h4{
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.session-speaker h6{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
}

/*----- 2- Schedule List -----*/
.schedule.list .schedule-container{
    display: block;
    margin: 4rem 0;
}

/*----- 3- Schedule Event -----*/
.events .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(42rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(42rem, 1fr));
    gap: 1.5rem;
}

.event-item{
    height: 30rem;
    overflow: hidden;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
}

.event-item .content{
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2rem;
    padding: 2rem;
}

.event-item .date{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--secondary-color);
    border-bottom: var(--custom-border);
    border-right: var(--custom-border);
    border-radius: var(--border-radius-3);
    padding: 1.5rem;
    text-align: center;
    width: 8rem;
    line-height: 1;
}

.event-item .date span{
    font-size: 3.5rem;
    font-weight: 500;
}

.event-item h5{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.event-item .main-heading{
    display: block;
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.event-item .main-heading:hover{
    color: var(--main-color);
}

.event-item h3{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--main-color);
}

/*----- 4- Schedule Single -----*/
.session-info iframe{
    width: 100%;
    height: 30rem;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.session-info .team .box-container{
    padding-top: 1rem;
}

/*------------------------------ (05)-Schedule (End) ------------------------------*/



/*------------------------------ (06)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/
.blog-item{
    border-bottom: var(--custom-border);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    border-radius: var(--border-radius-3);
}

.blog-item .image{
    height: 30rem;
} 

.blog-item .label{
    position: absolute;
    right: 0;
    top: 3rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    background-color:rgba(241, 18, 162, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.blog-item .content{
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    background:         linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
}

.blog-item .main-heading{
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    padding-bottom: 1rem;
}

.blog-item .main-heading:hover{
    color: var(--main-color);
}

.blog-item .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    border-top: 0.2rem solid rgba(255, 255, 255, 0.6);
    padding-top: 1.5rem;
}

.blog-item h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.blog-item h3 i{
    height: 2rem;
    width: 2rem;
    font-size: 1.8rem;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.blog-item h3 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--light-grey);
}

/*----- 02- Comments -----*/
.comment-item{
    padding-bottom: 1rem;
}

.comment-item:last-child{
    padding-bottom: 0;
}

.comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
}

.comment .comment-image{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    border: 0.4rem solid var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.comment .comment-content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

.comment .comment-intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.comment h3{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.comment h6{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--main-color);
}

.comment .text{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

.comment .icon-item{
    display: inline-block;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.7rem 1.5rem;
    border-radius: 5rem;
    cursor: pointer;
}

.comment .icon-item:hover{
    background-color: var(--secondary-color);
}

.comment .icon-item i{
    font-size: 1.5rem;
    padding-right: 0.5rem
}

.comment .icon-item span{
    font-size: 1.6rem;
}

.comment.reply{
    margin-left: 12rem;
}

.comment.reply .comment-content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
}

/*----- 03- Pages-No -----*/
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}

.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.pages-no .item{
    color: var(--white);
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    border-radius: var(--border-radius-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/*--------------- PAGES ---------------*/
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Blog Grid -----*/
.blog.grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.5rem;
}

.blog-container.grid .blog-items{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

/*----- 2- Blog List -----*/
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

.blog-container.list .blog-item .image{
    height: 40rem;
}

/*----- 3- Blog Single -----*/
/*
1- Blog Info
2- Comments
3- Leave A Reply
*/

.blog-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

/*-- 1- Blog Info --*/ 
.blog-info .image{
    position: relative;
}

.blog-info .label{
    position: absolute;
    right: 0;
    top: 3rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    background-color:rgba(241, 18, 162, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
  
.blog-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

.blog-info .details h5{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.blog-info .details h5 i{
    font-size: 1.8rem;
    color: var(--main-color);
}

.blog-info .details h5 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}
  
.blog-info .important{
    padding: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.8;
    color: var(--light-grey) !important; 
    background-color: var(--black);
    border: var(--custom-border);
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-info .important i{
    height: 7rem;
    width: 8rem;
    font-size: 3.2rem;
    color: var(--white);
    background-color: var(--main-color); 
    margin: 0 auto;
    margin-bottom: 1.5rem;
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-info .important .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.blog-info .important .intro span{
    height: 0.2rem;
    width: 2rem;
    background-color: var(--main-color);
}

.blog-info .important .intro h6{
    font-size: 2rem;
    color: var(--main-color);
    font-style: normal;
}

.blog-info .end-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
  
.blog-info .tags, 
.blog-info .share{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}
  
.blog-info .tags span{
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 5rem;
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
}

.blog-info .tags span:hover{
    background-color: var(--secondary-color);
}
 
.blog-info .share h3{
    color: var(--secondary-color);
    font-size: 1.6rem;
    padding-right: 1rem;
}
  
.blog-info .share i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    color: var(--grey);
    font-size: 1.6rem;
}
  
.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
   
/*-- 2- Comments --*/
.blog-single .comments{
    margin: 4rem 0;
    overflow: hidden;
} 

.blog-single .comments h4{  
    font-size: 2.5rem; 
    color: var(--secondary-color); 
    padding-bottom: 2rem;
} 

/*-- 3- Leave A Reply --*/
.blog-single .leave-reply h3{
    font-size: 2.5rem; 
    color: var(--secondary-color); 
    padding-bottom: 2rem;
}

/*------------------------------ (06)-Blog (End) ------------------------------*/



/*------------------------------ (07)-Shop (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Filter -----*/
.filter .box-container{
    padding-top: 4rem;
}

.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--secondary-color);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.range-input{
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.price-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: #242424;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 3rem;
}

.filter .price-input{
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
}

.filter .price-input .field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.5rem;
    text-align: center;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
            appearance: textfield;
    color: var(--secondary-color);
    background-color: transparent;
}

.filter input[type="number"]::-webkit-outer-spin-button,
.filter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.filter .price-input .separator{
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*----- 02- Shop Header -----*/
.shop .intro{
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-3);
}

.shop .intro .showing{
    font-size: 1.6rem;
    color: var(--grey);
}

.shop .intro .styles{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.shop .intro .styles a{
    font-size: 2rem;
    color: var(--secondary-color);
}

.shop .intro .styles a:hover{
    color: var(--main-color);
}

.shop .intro .sorting-type label{
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.shop .intro .sorting-type select{
    font-size: 1.4rem;
    color: var(--grey);
    background-color: transparent;
    border: var(--border);
    padding: 1rem;
}

/*----- 03- Quantity Box -----*/
.quantity.buttons_added {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 4rem;
    width: 11rem;
    margin: 0 auto;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    width: 3rem;
    color: var(--secondary-color);
    cursor:pointer;
    background-color: transparent;
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: var(--main-color); 
    color: var(--white);
}

.quantity .input-text.qty {
    padding: 0 1rem;
    text-align: center;
    background-color: transparent;  
    border-right: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
} 
  
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
    
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}

/*----- 04- product-item -----*/
.product-item{
    background-color: var(--white);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
} 

.product-item .image {
    width: 100%;
    height: 25rem;
    position: relative;
    overflow: hidden;
}

.product-item .options{
    position: absolute;
    top: 0rem;
    left: 0rem;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    opacity: 0;
}

.product-item:hover .options{
    opacity: 1;
}

.product-item .options a{
    height: 5rem;
    width: 5rem;
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--white);
    background: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    scale: 0;
}

.product-item:hover .options a{
    scale: 1;
}

.product-item .options a:hover {
    color: var(--main-color);
    background: var(--white);
}

.product-item .content{
    padding: 2rem;
}

.product-item .rating i{
    font-size: 1.4rem;
    color: var(--main-color);
    padding-bottom: 0.5rem;
}

.product-item h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.product-item h3:hover{
    color: var(--main-color);
}

.product-item p{
    padding-bottom: 1rem;
}

.product-item .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

.product-item .price span{ 
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--secondary-color);
    padding-left: 0.2rem;
}

/*----- 06- Shop-Title -----*/
.shoplist-title{
    background-color: var(--main-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.shoplist-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10rem;
        flex: 1 1 10rem;
    font-size: 2rem;
    text-align: center;
}

.shoplist-title h3.product-heading{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: left;
}

/*----- 07- Cart-Summary -----*/
.summary-list{
    padding-top: 1rem;
} 

.summary-item{
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color); 
} 

.summary-item .name{
    font-weight: 600;
}

.summary-item .value{
    font-weight: 500;
    color: var(--main-color);
}

/*----- 08- Radio Button -----*/
.payment input:checked + label, 
.payment label:hover{ 
    color: var(--main-color);
}
  
.payment input[type="radio"] {
    position: absolute;
    opacity: 0;
}
  
.payment input[type="radio"] + 
.radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 0.1rem solid var(--grey);
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    position: relative;
    top: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}
  
.payment input[type="radio"]:checked + 
.radio-label:before {
    background-color: var(--main-color);
    -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
            box-shadow: inset 0 0 0 4px #f4f4f4;
    outline: none;
    border-color: var(--main-color);
}

/*----- 09- Account-Form -----*/
.account-form{
    max-width: 45rem;
    padding: 5rem;
    background: var(--black);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 0rem auto;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius-3);
}

.account-form input:-webkit-autofill,
.account-form input:-webkit-autofill:hover,
.account-form input:-webkit-autofill:focus,
.account-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
  
.account-form h3{ 
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.account-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    border: 0.15rem solid var(--white);
    border-radius: var(--border-radius-1);
    padding: 1.2rem;
    text-transform: none;
    margin: 0.7rem 0;
}

.account-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}
.account-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}
.account-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}
.account-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.account-form .box:focus{
    border-color: var(--main-color);
}

.account-form p{
    padding-top: 2rem;
    color: var(--white);
    text-align: center;
    padding-bottom: 1rem;
}

.account-form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1.5rem;
}

.account-form .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

.account-form .link:hover{
    text-decoration: underline;
}

.account-form .checkbox-label {
    color: var(--grey);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.account-form .checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}
  
.account-form .checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}
  
.account-form .checkbox-label input:checked ~ 
.checkbox-indicator {
    background: var(--main-color);
    outline-color: var(--main-color);
}
  
.account-form .checkbox-indicator:after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
    width: 0.3rem;
    height: 0.8rem;
    border: solid var(--light-grey);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    display: none;
}

.account-form .checkbox-label input:checked ~ 
.checkbox-indicator:after {
    display: initial;
}

/*--------------- PAGES ---------------*/
.shop{
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

/*----- 2- Shop Standard -----*/
.shop .product-container.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.shop .product-container.list .product-item{
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.shop .product-container.list .product-item .image{
    height: 100%;
}

.shop .product-container.list .product-item img{
    height: 100%;
}

.shop .product-container.list .product-item .content{
    text-align: left;
    padding: 1.5rem;
}

/*----- 3- Product Single -----*/
.product-single .product-des{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 3.5rem;
    border-radius: var(--border-radius-3);
}

.product-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 2rem;
}

.product-single .product-des .box-container .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-single .product-des .box-container .image-container{
    max-width: 50rem;
}

.product-single .product-des .box-container .image-container .main{
    width: 100%;
    height: 40rem;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.product-single .product-des .box-container .image .change-btns{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(7rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-single .product-des .box-container .image .change-btns img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;    
}

.product-single .product-des .image .change-btns img:hover,
.product-single .product-des .image .change-btns img.active{
    border: 0.4rem solid var(--main-color);
}

.product-single .product-des .box-container .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-single .product-des .box-container .content h2{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.product-single .product-des .box-container .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-single .product-des .box-container .content .intro .rating{
    color: var(--main-color);
    font-size: 1.6rem;
}

.product-single .product-des .box-container .content .intro span{
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 500;
    padding-left: 1rem;
}

.product-single .product-des .box-container .content h3{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.product-single .product-des .box-container .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

.product-single .product-des .box-container .content .price span{
    color: var(--grey);
    font-weight: lighter;
    text-decoration: line-through;
}

.product-single .product-des .box-container .content p{
    padding: 2rem 0;
    margin-top: 1rem;
    font-weight: 400;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.product-single .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

.product-single .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    width: 15rem;
}

.product-single .product-des .box-container .content .btn{
    margin: 2rem 0;
}

.product-single .categories,
.product-single .tags{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
}

.product-single .qty h4,
.product-single .categories h4,
.product-single .tags h4{
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-single .categories a,
.product-single .tags a{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-color);
    padding: 0 0.5rem;
}

.product-single .categories a:hover,
.product-single .tags a:hover{
    color: var(--secondary-color);
}

/*-- Product Addtional Information --*/
.product-single .tab-info{
    margin-top: 4rem;
}

.product-info .additional-info .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

.product-info .additional-info h3{
    width: 20rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.product-info .additional-info span{
    font-size: 1.6rem;
    color: var(--grey);
}

.product-info h2{
    font-size: 3rem; 
    color: var(--secondary-color); 
    padding-bottom: 1rem;
}

.product-info .reviews{
    margin-bottom: 2rem;
} 

.product-info .leave-reply{
    width: 60rem;
} 

/*-- Related Products --*/
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/*----- 4- Wishlist  ------*/
.wishlist-container{
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.wishlist-container::-webkit-scrollbar{
    height: 0.8rem;
}

.wishlist .container{
    min-width: 90rem;
}

.wishlist .box-container{
    padding: 0rem 1rem;
}

.wishlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.wishlist-item:last-child{
    border: none;
}

.wishlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.wishlist-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.wishlist-item img{
    height: 8rem;
    width: 8rem;
    background-color: #f7f7f7;
    border-radius: var(--border-radius-3);
}

.wishlist-item .name{
    color: var(--secondary-color);
    font-weight: 600;
}

.wishlist-item .price{
    color: var(--grey);
    font-weight: 500;
}

.wishlist-item .status.in{
    color: green;
}

.wishlist-item .status.out{
    color: red;
}

.wishlist-item .action{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.wishlist-item a{
    font-size: 2rem;
    cursor: pointer;
}

.wishlist-item a:hover{
    color: var(--main-color);
}

.wishlist-item .delete{
    color: red;
}

.wishlist-item .cart{
    color: var(--secondary-color);
}

/*----- 5- Cart  ------*/
.shopping-cart{
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.cart .container{
    min-width: 90rem;
}

.shopping-cart::-webkit-scrollbar{
    height: 0.8rem;
}

.cart .box-container{
    padding: 0rem 1rem;
}

.cart-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.cart-item:last-child{
    border: none;
}

.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.cart-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.cart-item img{
    height: 8rem;
    width: 8rem;
    background-color:#f7f7f7;
    border-radius: var(--border-radius-3);
}

.cart-item .name{
    color: var(--secondary-color);
    font-weight: 600;
}

.cart-item .price,
.cart-item .total{
    color: var(--grey);
}

.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

.cart-item .icon:hover{
    color: var(--main-color);
}

/*-- 2- Cart Total --*/
.cart .cart-summary{
    width: 40rem;
    padding: 1rem;
    margin-left: auto;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.cart .cart-summary .btn{
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/*----- 6- Checkout -----*/
/*
1- Payment Method
2- Cart Total
*/

.checkout{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 1.5rem;
}

.checkout .heading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.checkout h2{
    font-size: 3.5rem;
}

.checkout h2:before{
    left: 0;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
        transform: translateX(0%);
}

.checkout .box-1{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;  
}

.checkout .box-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

.checkout-item{
    margin-bottom: 1.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.checkout .box-1 .checkout-item:last-child{
    margin-bottom: 0;   
}

/*-- 1- Payment Method --*/
.payment-methods .payment{
    margin-bottom: 1.5rem;
}

.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.payment-body{ 
    display: none;
}

.payment-body.active{
    display: block;
}

.payment-methods .payment .payment-body p{
    font-size: 1.4rem;
    padding-top: 1rem;
}

.checkout .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.checkout .btn{
    width: 100%;
    text-align: center;
}

/*----- 7- Login -----*/
.login form .info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 2rem 0;
}
  
.login form label{
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}
  
/*----- 8- Register -----*/
.register form .checkbox-label{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 2rem 0;
}
  
.register form label{
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}
  
.register form label span{
    color: var(--main-color);
}

/*------------------------------ (07)-Shop (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/
.contact{
    padding: 2rem 0;
}

.contact .box-container{
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Contact.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Contact.jpg");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 4rem 5%;
    gap: 4rem;
}

/*-- Contact Information --*/
.contact-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.contact-info .contact-info-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
}

.contact .contact-info .info-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.contact .contact-info .info-item i{
    height: 8rem;
    width: 10rem;
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.contact .contact-info .info-item h3{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 0.7rem;
}

.contact .contact-info .info-item p{
    font-size: 1.6rem;
    color: var(--light-grey);
}

.contact .contact-info .info-item p.gmail{
    text-transform: none;
}

.contact .heading h2{
    color: var(--white);
}

.contact .heading{
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
}

/*-- Contact Form --*/
.contact form{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.contact form .alert{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-left: 1rem;
} 

/*-- Google Map --*/
.contact iframe{
    width: 100%;
    height: 40rem;
    margin-top: 1rem;
}


/*------------------------------ (06)-Contact (End) ------------------------------*/

.top-games {
  padding: 60px 20px;
  background-color: #0e0f2c;
  color: #fff;
  text-align: center;
}

.top-games .heading h2 {
  font-size: 2.5rem;
  color: #ff1cad; 
  margin-bottom: 40px;
}

.top-games .heading span {
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1e1f3e;
  transition: transform 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  display: block;
}

.game-card:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.game-card:hover .overlay {
  opacity: 1;
}

.btn-play {
  background-color: #ff1cad;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: #d80078;
}

/* ==================  Promotions Section ================== */

.steugene-promos{
  padding:80px 20px; 
}

.steugene-promos .container{
  max-width:1200px;
  margin:auto;
}

.steugene-promos .heading.center{
  text-align:center;
  margin-bottom:60px;
}

.promo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.promo-column{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.promo-card{
  background:rgba(0,0,0,0.03);
  border-radius:14px;
  padding:25px;
  border:1px solid rgba(0,0,0,0.06);
}

.promo-card.highlight{
  border:1px solid rgba(255,28,173,0.35);
}

.promo-card.soft{
  background:rgba(0,0,0,0.02);
}

.big-bonus{
  font-size:1.3rem;
  font-weight:700;
  color:#ff1cad;
  margin:10px 0;
}

.badge{
  display:inline-block;
  background:#ff1cad;
  color:#fff;
  padding:5px 12px;
  font-size:.75rem;
  border-radius:20px;
  margin-bottom:10px;
}

.badge.accent{
  background:#ffd000;
  color:#111;
}

.badge.small{
  font-size:.65rem;
  margin-right:8px;
}

.feature-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.feature{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.feature i{
  color:#ff1cad;
  font-size:1.2rem;
  margin-top:4px;
}

.styled-list{
  list-style:none;
  padding:0;
  margin-top:10px;
}

.styled-list li{
  padding:8px 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.promo-list{
  list-style:none;
  padding:0;
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.promo-list li{
  background:rgba(0,0,0,0.02);
  padding:12px 15px;
  border-radius:10px;
  line-height:1.5;
  border:1px solid rgba(0,0,0,0.05);
}

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

.promo-column{
  display:flex;
  flex-direction:column;
  height:100%;
}

.promo-column .promo-card:last-child{
  margin-top:auto;   /* ВОТ ЭТО КЛЮЧ */
}

/* ================== Access & Registration Section ================== */

.steugene-access{
  padding:80px 20px;
}

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

.access-card{
  background:#ffffff;
  border-radius:16px;
  padding:30px;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  position:relative;
}

.access-card.highlight{
  border:1px solid rgba(255,28,173,0.35);
}

.access-badge{
  display:inline-block;
  font-size:.75rem;
  padding:6px 12px;
  background:#f1f1f1;
  border-radius:20px;
  margin-bottom:12px;
}

.access-badge.accent{
  background:#ff1cad;
  color:#fff;
}

.access-list{
  list-style:none;
  padding:0;
  margin-top:15px;
}

.access-list li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.access-list i{
  color:#ff1cad;
  margin-top:4px;
}

/* STEPS DESIGN */
.access-steps{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:10px;
}

.step{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.step-number{
  min-width:36px;
  height:36px;
  border-radius:50%;
  background:#ff1cad;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.8rem;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .access-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Online Casino App ================== */

.steugene-app{
  padding:80px 20px;
}

.app-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  margin-top:40px;
  align-items:start;
}

.app-column{
  display:flex;
  flex-direction:column;
  gap:20px;
}

..app-image img{
  width:100%;
  border-radius:0;     
  box-shadow:none;     
}


/* FEATURES */
.app-features{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.app-feature{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.app-feature i{
  color:#ff1cad;
  font-size:1.3rem;
  margin-top:4px;
}

/* INSTALL BLOCK */
.app-install{
  margin-top:10px;
}

.app-steps{
  list-style:none;
  padding:0;
  margin-top:10px;
}

.app-steps li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.store-buttons{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.store-buttons img{
  height:48px;
  width:auto;
}

/* RESPONSIVE */
@media(max-width:900px){
  .app-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Payments ================== */

.steugene-payments{
  padding:80px 20px;
  background:#fff;
}

.steugene-payments .container{
  max-width:1200px;
  margin:auto;
}

.steugene-payments .heading.center{
  text-align:center;
  margin-bottom:40px;
}

.payments-intro{
  max-width:900px;
  margin:0 auto 40px;
}

.payments-intro p{
  margin-bottom:15px;
}

/* TABLE */
.payments-table{
  background:#0e0f2c;
  padding:30px;
  border-radius:12px;
  color:#fff;
  margin-bottom:40px;
}

.payments-table table{
  width:100%;
  border-collapse:collapse;
}

.payments-table th,
.payments-table td{
  padding:15px;
  text-align:left;
}

.payments-table thead tr{
  border-bottom:1px solid #444;
}

/* INFO GRID */
.payments-info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.payments-info{
  background:#f7f7f9;
  border-radius:14px;
  padding:25px;
}

.payments-info h4{
  margin-bottom:10px;
}

.payments-info i{
  color:#ff1cad;
  margin-right:8px;
}

/* PAYMENT ICONS */
.payment-icon{
  width:70px;
  max-height:90px;
  display:block;
  margin:0 auto;
}

/* RESPONSIVE */
@media(max-width:900px){
  .payments-info-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Trust & Security Section ================== */

.steugene-trust{
  padding:90px 20px;
  background:#fff;
}

.steugene-trust .container{
  max-width:1200px;
  margin:auto;
}

.steugene-trust .heading.center{
  text-align:center;
  margin-bottom:50px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.trust-card{
  background:#f7f7f9;
  border-radius:16px;
  padding:30px;
  transition:.3s ease;
}

.trust-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(0,0,0,0.05);
}

.trust-card h3{
  margin-bottom:10px;
}

.trust-card i{
  color:#ff1cad;
  margin-right:8px;
}

.trust-card ul{
  margin-top:12px;
  padding-left:18px;
}

.trust-card ul li{
  margin-bottom:6px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .trust-grid{
    grid-template-columns:1fr 1fr;
  }
}

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

/* ================== Resort Experience ================== */

.steugene-resort{
  padding:90px 20px;
  background:#fff;
}

.steugene-resort .container{
  max-width:1200px;
  margin:auto;
}

.steugene-resort .heading.center{
  text-align:center;
  margin-bottom:40px;
}

.resort-intro{
  max-width:900px;
  margin:0 auto 50px;
  text-align:center;
}

.resort-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.resort-card{
  background:#f7f7f9;
  border-radius:16px;
  padding:30px;
  transition:.3s ease;
}

.resort-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.05);
}

.resort-card i{
  color:#ff1cad;
  font-size:1.4rem;
  margin-bottom:10px;
  display:inline-block;
}

.resort-card h3{
  margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .resort-grid{
    grid-template-columns:1fr 1fr;
  }
}

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

/* ================== FAQ Section ================== */

.steugene-faq{
  padding:90px 20px;
  background:#fff;
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
}

.faq-item{
  border-bottom:1px solid #eee;
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  font-size:1rem;
  font-weight:600;
  padding:18px 0;
  cursor:pointer;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:1.2rem;
  color:#ff1cad;
}

.faq-item.active .faq-question::after{
  content:"−";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding-bottom:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}
.faq-question{
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:.2px;
}

/* Sponsor block container */
.sponsor-item{
  display:flex;
  align-items:center;
  justify-content:center;
  height:90px;       
  padding:10px;
}

.sponsor-item a{
  width:140px;        
  height:60px;        
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Сами картинки */
.sponsor-item img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;  
}

.hero-desc{
  font-size:1.05rem;
  line-height:1.6;
  margin:20px 0 30px;
}
.home .hero-desc{
  color:#fff;
  opacity:.9;
}
/* HERO DESCRIPTION SIZE — DESKTOP */
@media (min-width: 992px){

  .home .hero-desc{
    font-size:1.5rem;      /
    line-height:1.7;
    max-width:700px;       
  }

}
/* ==================== About Casino ==================== */

.casino-about {
    padding: 10rem 5%;
    background:
        radial-gradient(circle at 10% 20%, rgba(241, 18, 162, 0.10), transparent 32rem),
        radial-gradient(circle at 90% 80%, rgba(79, 23, 135, 0.18), transparent 38rem),
        #09090d;
    position: relative;
    overflow: hidden;
}

.about-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* ==================== Intro ==================== */

.about-intro {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 7rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 58rem;
    overflow: hidden;
    border-radius: 2.4rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.45);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 35%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.about-image-badge {
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
    z-index: 2;
    min-width: 17rem;
    padding: 1.8rem 2.2rem;
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(12px);
    border-left: 3px solid var(--main-color);
    border-radius: 1rem;
}

.about-image-badge span,
.about-image-badge small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    letter-spacing: 0.08rem;
}

.about-image-badge strong {
    display: block;
    margin: 0.2rem 0;
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.1;
}


/* ==================== Main Text ==================== */

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.7rem;
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.about-eyebrow i {
    font-size: 1.2rem;
}

.about-content h2 {
    max-width: 70rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-size: clamp(3.5rem, 4vw, 5.3rem);
    font-weight: 600;
    line-height: 1.08;
}

.about-content p {
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.65rem;
    line-height: 1.85;
}

.about-content .about-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.85rem;
    line-height: 1.8;
}


/* ==================== Fact Cards ==================== */

.about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 7rem 0;
}

.about-fact {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    min-height: 17rem;
    padding: 2.6rem 2.2rem;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.025)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 3px solid transparent;
    border-radius: 1.6rem;

    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.about-fact:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--main-color);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.04)
    );
}

.fact-icon {
    flex: 0 0 5.2rem;
    width: 5.2rem;
    height: 5.2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 1.2rem;

    color: #fff;
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--main-color)
    );

    box-shadow: 0 0.8rem 2.5rem rgba(241, 18, 162, 0.18);
    font-size: 2rem;
}

.about-fact span {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.about-fact h3 {
    margin-bottom: 0.7rem;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;
}

.about-fact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    line-height: 1.55;
}


/* ==================== Detail Area ==================== */

.about-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(32rem, 0.7fr);
    gap: 5rem;
    padding-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-mini-title {
    display: inline-block;
    margin-bottom: 1.3rem;
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
}

.about-detail-content > h3 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 3.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-detail-content > p {
    max-width: 82rem;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.6rem;
    line-height: 1.85;
}


/* ==================== Highlights ==================== */

.about-highlights {
    display: grid;
    gap: 1.3rem;
    margin-top: 3rem;
}

.highlight-item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1.6rem;
    align-items: start;

    padding: 2rem;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.2rem;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(241, 18, 162, 0.25);
}

.highlight-item > i {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.1);
    border-radius: 1rem;

    font-size: 2rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.8rem;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.45rem;
    line-height: 1.65;
}


/* ==================== Operator Card ==================== */

.about-operator {
    align-self: start;
    padding: 3.5rem;

    background:
        radial-gradient(
            circle at top right,
            rgba(241, 18, 162, 0.15),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            #17111d,
            #0d0b11
        );

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;

    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
}

.operator-label {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.about-operator > h3 {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    color: #fff;
    font-size: 2.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.operator-row {
    display: grid;
    grid-template-columns: 3.8rem 1fr;
    gap: 1.3rem;
    margin-bottom: 2rem;
}

.operator-row > i {
    width: 3.8rem;
    height: 3.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.8rem;

    font-size: 1.5rem;
}

.operator-row span {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.operator-row p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.4rem;
    line-height: 1.6;
}

.about-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 3rem;
    padding-top: 2rem;

    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-link i {
    color: var(--main-color);
}

.about-link:hover {
    color: var(--main-color);
}


/* ==================== Responsive ==================== */

@media (max-width: 1100px) {

    .about-intro {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

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

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

    .about-operator {
        max-width: 65rem;
    }
}

@media (max-width: 768px) {

    .casino-about {
        padding: 7rem 5%;
    }

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

    .about-image {
        height: 45rem;
    }

    .about-content h2 {
        font-size: 3.6rem;
    }

    .about-facts {
        grid-template-columns: 1fr;
        margin: 5rem 0;
    }

    .about-fact {
        min-height: auto;
    }

    .about-detail {
        gap: 3.5rem;
        padding-top: 4rem;
    }

    .about-detail-content > h3 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {

    .about-image {
        height: 36rem;
    }

    .about-image-badge {
        left: 1.5rem;
        bottom: 1.5rem;
    }

    .about-operator {
        padding: 2.5rem 2rem;
    }
}
.casino-about {
    padding: 10rem 5%;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(241, 18, 162, 0.13),
            transparent 34rem
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(126, 55, 190, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #160b24 0%,
            #211032 48%,
            #12081d 100%
        );
    position: relative;
    overflow: hidden;
}
/* =========================================================
   Casino Overview
========================================================= */

.casino-overview {
    padding: 10rem 5%;
    background:
        radial-gradient(circle at 100% 0%, rgba(79, 23, 135, 0.07), transparent 35rem),
        radial-gradient(circle at 0% 100%, rgba(241, 18, 162, 0.05), transparent 35rem),
        #f4f3f7;
}

.casino-overview-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* Heading */

.casino-overview-heading {
    max-width: 88rem;
    margin: 0 auto 6rem;
    text-align: center;
}

.casino-overview-label {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.6rem;

    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.casino-overview-heading h2 {
    margin-bottom: 2rem;

    color: var(--secondary-color);
    font-size: clamp(3.7rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.casino-overview-heading p {
    max-width: 80rem;
    margin: 0 auto;

    color: #666;
    font-size: 1.7rem;
    line-height: 1.85;
}


/* =========================================================
   Two Gaming Worlds
========================================================= */

.gaming-worlds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gaming-world {
    position: relative;
    overflow: hidden;
    padding: 4rem;

    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.08);
}

.gaming-world-machines {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.16),
            transparent 25rem
        ),
        #ffffff;

    border: 1px solid rgba(79, 23, 135, 0.08);
}

.gaming-world-live {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.16),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            #2c123f,
            #170b23
        );

    color: #fff;
}


/* Top */

.gaming-world-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.gaming-world-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--main-color)
    );

    border-radius: 1.4rem;
    font-size: 2.4rem;
}

.gaming-world-number {
    color: rgba(79, 23, 135, 0.08);
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
}

.gaming-world-live .gaming-world-number {
    color: rgba(255, 255, 255, 0.06);
}


/* Typography */

.gaming-world-type {
    display: block;
    margin-bottom: 0.8rem;

    color: var(--main-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.gaming-world h3 {
    margin-bottom: 1.5rem;

    color: var(--secondary-color);
    font-size: 3.3rem;
    font-weight: 600;
}

.gaming-world-live h3 {
    color: #fff;
}

.gaming-world > p {
    min-height: 11rem;
    margin-bottom: 2.8rem;

    color: #666;
    font-size: 1.55rem;
    line-height: 1.8;
}

.gaming-world-live > p {
    color: rgba(255, 255, 255, 0.67);
}


/* Machine Stats */

.gaming-world-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.world-stat {
    padding: 1.7rem 1.2rem;
    text-align: center;

    background: #f5f2f7;
    border-radius: 1rem;
}

.world-stat strong {
    display: block;
    margin-bottom: 0.4rem;

    color: var(--secondary-color);
    font-size: 2.5rem;
    line-height: 1;
}

.world-stat span {
    color: #777;
    font-size: 1.15rem;
    line-height: 1.4;
}


/* Classic Games */

.classic-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.classic-game {
    min-height: 8.4rem;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.classic-game i {
    color: var(--main-color);
    font-size: 1.7rem;
}

.classic-game span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.3rem;
}


/* Hours */

.gaming-world-hours {
    display: flex;
    align-items: center;
    gap: 1.3rem;

    margin-bottom: 2.5rem;
    padding: 1.7rem 0;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gaming-world-live .gaming-world-hours {
    border-color: rgba(255, 255, 255, 0.1);
}

.gaming-world-hours > i {
    color: var(--main-color);
    font-size: 2rem;
}

.gaming-world-hours span {
    display: block;
    margin-bottom: 0.2rem;

    color: #888;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.gaming-world-live .gaming-world-hours span {
    color: rgba(255, 255, 255, 0.45);
}

.gaming-world-hours strong {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.gaming-world-live .gaming-world-hours strong {
    color: #fff;
}


/* Links */

.gaming-world-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    color: var(--secondary-color);
    font-size: 1.45rem;
    font-weight: 600;
}

.gaming-world-link i {
    color: var(--main-color);
}

.gaming-world-live .gaming-world-link {
    color: #fff;
}

.gaming-world-link:hover {
    gap: 1.5rem;
    color: var(--main-color);
}


/* =========================================================
   Floor Map
========================================================= */

.casino-floor-map {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 5rem;

    margin-top: 7rem;
    padding: 5rem;

    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.06);
}

.floor-map-intro {
    padding-right: 2rem;
}

.floor-map-intro > span {
    display: block;
    margin-bottom: 1rem;

    color: var(--main-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.floor-map-intro h3 {
    margin-bottom: 1.5rem;

    color: var(--secondary-color);
    font-size: 3.2rem;
    line-height: 1.2;
}

.floor-map-intro p {
    color: #777;
    font-size: 1.5rem;
    line-height: 1.75;
}


/* Items */

.floor-map-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.floor-map-item {
    display: grid;
    grid-template-columns: 4.7rem 1fr auto;
    align-items: center;
    gap: 1.3rem;

    padding: 1.6rem;

    background: #f7f5f8;
    border: 1px solid transparent;
    border-radius: 1rem;
}

.floor-map-item:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(241, 18, 162, 0.25);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.06);
}

.floor-map-icon {
    width: 4.7rem;
    height: 4.7rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.08);
    border-radius: 0.9rem;

    font-size: 1.8rem;
}

.floor-map-item h4 {
    margin-bottom: 0.2rem;

    color: var(--secondary-color);
    font-size: 1.55rem;
}

.floor-map-item p {
    color: #888;
    font-size: 1.2rem;
    line-height: 1.4;
}

.floor-arrow {
    color: #aaa;
    font-size: 1.2rem;
}

.floor-map-item:hover .floor-arrow {
    color: var(--main-color);
}


/* =========================================================
   First Visit
========================================================= */

.casino-first-look {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;

    margin-top: 2rem;
    padding: 3rem 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.13),
            transparent 25rem
        ),
        linear-gradient(
            120deg,
            #29123c,
            #170a23
        );

    border-radius: 1.6rem;
}

.first-look-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--main-color);
    border-radius: 50%;

    font-size: 2.2rem;
}

.first-look-content span {
    display: block;
    margin-bottom: 0.4rem;

    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.first-look-content h3 {
    margin-bottom: 0.7rem;

    color: #fff;
    font-size: 2rem;
    font-weight: 500;
}

.first-look-content p {
    max-width: 85rem;

    color: rgba(255, 255, 255, 0.62);
    font-size: 1.35rem;
    line-height: 1.65;
}

.first-look-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    padding: 1.3rem 1.8rem;

    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.8rem;

    font-size: 1.3rem;
    white-space: nowrap;
}

.first-look-link:hover {
    color: #fff;
    background: var(--main-color);
    border-color: var(--main-color);
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

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

    .gaming-world > p {
        min-height: auto;
    }

    .casino-floor-map {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


@media (max-width: 768px) {

    .casino-overview {
        padding: 7rem 5%;
    }

    .gaming-world {
        padding: 3rem 2.5rem;
    }

    .gaming-world-stats,
    .classic-games {
        grid-template-columns: 1fr;
    }

    .world-stat {
        text-align: left;
    }

    .classic-game {
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .casino-floor-map {
        padding: 3rem 2.5rem;
    }

    .floor-map-items {
        grid-template-columns: 1fr;
    }

    .casino-first-look {
        grid-template-columns: auto 1fr;
    }

    .first-look-link {
        grid-column: 1 / -1;
        justify-content: center;
    }
}


@media (max-width: 480px) {

    .casino-overview-heading h2 {
        font-size: 3.4rem;
    }

    .gaming-world {
        padding: 2.5rem 2rem;
    }

    .gaming-world-number {
        font-size: 5rem;
    }

    .gaming-world h3 {
        font-size: 2.7rem;
    }

    .casino-floor-map {
        padding: 2.5rem 1.8rem;
    }

    .floor-map-item {
        grid-template-columns: 4.5rem 1fr;
    }

    .floor-arrow {
        display: none;
    }

    .casino-first-look {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }
}
/* ==================== Casino Overview — Dark ==================== */

.casino-overview {
    padding: 10rem 5%;
    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(241, 18, 162, 0.10),
            transparent 36rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(104, 48, 158, 0.16),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #1d0d2d 50%,
            #11081b 100%
        );
}

.casino-overview-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* Heading */

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

.casino-overview-heading p {
    color: rgba(255, 255, 255, 0.68);
}


/* ==================== Gaming Worlds ==================== */

.gaming-world-machines {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.12),
            transparent 27rem
        ),
        linear-gradient(
            145deg,
            #28113b,
            #190c27
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gaming-world-live {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.16),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            #321548,
            #1c0c2b
        );

    border: 1px solid rgba(255, 255, 255, 0.09);
}

.gaming-world {
    box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.28);
}

.gaming-world-number,
.gaming-world-live .gaming-world-number {
    color: rgba(255, 255, 255, 0.055);
}

.gaming-world h3,
.gaming-world-live h3 {
    color: #fff;
}

.gaming-world > p,
.gaming-world-live > p {
    color: rgba(255, 255, 255, 0.65);
}


/* Machine Stats */

.world-stat {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.world-stat strong {
    color: #fff;
}

.world-stat span {
    color: rgba(255, 255, 255, 0.52);
}


/* Classic Games */

.classic-game {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.classic-game span {
    color: rgba(255, 255, 255, 0.88);
}


/* Hours */

.gaming-world-hours,
.gaming-world-live .gaming-world-hours {
    border-color: rgba(255, 255, 255, 0.09);
}

.gaming-world-hours span,
.gaming-world-live .gaming-world-hours span {
    color: rgba(255, 255, 255, 0.42);
}

.gaming-world-hours strong,
.gaming-world-live .gaming-world-hours strong {
    color: #fff;
}

.gaming-world-link,
.gaming-world-live .gaming-world-link {
    color: #fff;
}

.gaming-world-link:hover {
    color: var(--main-color);
}


/* ==================== What You Can Play ==================== */

.casino-floor-map {
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(79, 23, 135, 0.2),
            transparent 30rem
        ),
        rgba(29, 13, 44, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.25);
}

.floor-map-intro h3 {
    color: #fff;
}

.floor-map-intro p {
    color: rgba(255, 255, 255, 0.6);
}


/* Game Cards */

.floor-map-item {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.floor-map-item:hover {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(241, 18, 162, 0.3);

    box-shadow:
        0 1rem 2.5rem rgba(0, 0, 0, 0.2),
        0 0 2rem rgba(241, 18, 162, 0.05);
}

.floor-map-icon {
    color: var(--main-color);
    background: rgba(241, 18, 162, 0.1);
}

.floor-map-item h4 {
    color: #fff;
}

.floor-map-item p {
    color: rgba(255, 255, 255, 0.48);
}

.floor-arrow {
    color: rgba(255, 255, 255, 0.3);
}


/* ==================== First Visit ==================== */

.casino-first-look {
    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.16),
            transparent 28rem
        ),
        linear-gradient(
            120deg,
            #34154c,
            #1a0b29
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.first-look-content h3 {
    color: #fff;
}

.first-look-content p {
    color: rgba(255, 255, 255, 0.62);
}
/* =========================================================
   Slots & Electronic Gaming
========================================================= */

.slots-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 0% 15%,
            rgba(241, 18, 162, 0.09),
            transparent 36rem
        ),
        radial-gradient(
            circle at 100% 75%,
            rgba(99, 40, 151, 0.16),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #11081b 0%,
            #1a0b29 50%,
            #12081d 100%
        );
}

.slots-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   Heading
========================================================= */

.slots-heading {
    max-width: 90rem;
    margin-bottom: 6rem;
}

.slots-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.slots-heading h2 {
    max-width: 85rem;
    margin-bottom: 2rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.6rem);
    font-weight: 600;
    line-height: 1.1;
}

.slots-heading p {
    max-width: 85rem;

    color: rgba(255, 255, 255, 0.67);

    font-size: 1.7rem;
    line-height: 1.85;
}


/* =========================================================
   Stats
========================================================= */

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

    gap: 1.5rem;
    margin-bottom: 6rem;
}

.slots-stat {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(85, 39, 119, 0.36),
            rgba(35, 14, 54, 0.65)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.slots-stat-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2.5rem;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.10);

    border: 1px solid rgba(241, 18, 162, 0.15);
    border-radius: 1rem;

    font-size: 2rem;
}

.slots-stat > span {
    display: block;

    margin-bottom: 0.7rem;

    color: rgba(255, 255, 255, 0.42);

    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.slots-stat h3 {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.slots-stat p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.6;
}


/* =========================================================
   Main Formats
========================================================= */

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

    gap: 2rem;
}

.slot-format {
    padding: 4rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.08),
            transparent 24rem
        ),
        linear-gradient(
            145deg,
            #271138,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

.slot-format-main {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.14),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            #311546,
            #1b0c29
        );
}

.slot-format-wide {
    grid-column: 1 / -1;
}

.slot-format-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    margin-bottom: 2.5rem;
}

.slot-format-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--secondary-color),
            var(--main-color)
        );

    border-radius: 1.2rem;

    font-size: 2.2rem;
}

.slot-format-header > span {
    color: var(--main-color);

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.11rem;
    text-transform: uppercase;
}

.slot-format h3 {
    margin-bottom: 1.7rem;

    color: #fff;

    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

.slot-format > p {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.63);

    font-size: 1.55rem;
    line-height: 1.8;
}


/* Note */

.slot-format-note {
    display: grid;
    grid-template-columns: 4.2rem 1fr;
    gap: 1.5rem;

    align-items: start;

    margin-top: 2.5rem;
    padding: 1.8rem;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
}

.slot-format-note i {
    width: 4.2rem;
    height: 4.2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.08);

    border-radius: 0.8rem;

    font-size: 1.6rem;
}

.slot-format-note p {
    color: rgba(255, 255, 255, 0.56);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Multi Roulette
========================================================= */

.multi-roulette-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1rem;
    margin-top: 3rem;
}

.multi-roulette-facts > div {
    padding: 2rem;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
}

.multi-roulette-facts span {
    display: block;

    margin-bottom: 0.6rem;

    color: rgba(255, 255, 255, 0.42);

    font-size: 1.15rem;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.multi-roulette-facts strong {
    color: #fff;

    font-size: 2.4rem;
    font-weight: 600;
}


/* =========================================================
   Beginner Explanation
========================================================= */

.slots-beginner {
    margin-top: 6rem;
    padding: 4.5rem;

    background:
        linear-gradient(
            145deg,
            rgba(52, 22, 75, 0.88),
            rgba(25, 10, 38, 0.94)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2rem;
}

.slots-beginner-heading {
    max-width: 55rem;
    margin-bottom: 3rem;
}

.slots-beginner-heading span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.slots-beginner-heading h3 {
    color: #fff;

    font-size: 3rem;
    font-weight: 600;
}

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

    gap: 1.5rem;
}

.beginner-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;

    padding: 2rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.beginner-number {
    color: rgba(241, 18, 162, 0.5);

    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.beginner-item h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 1.65rem;
    font-weight: 500;
}

.beginner-item p {
    color: rgba(255, 255, 255, 0.53);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Staff Support
========================================================= */

.slots-support {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;

    align-items: center;

    margin-top: 2rem;
    padding: 3rem 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.10),
            transparent 24rem
        ),
        #20102f;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.slots-support-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border: 1px solid rgba(241, 18, 162, 0.14);
    border-radius: 50%;

    font-size: 2.2rem;
}

.slots-support span {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.slots-support h3 {
    margin-bottom: 0.6rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.slots-support p {
    max-width: 90rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.4rem;
    line-height: 1.65;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

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

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


@media (max-width: 768px) {

    .slots-section {
        padding: 7rem 5%;
    }

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

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

    .slot-format-wide {
        grid-column: auto;
    }

    .slot-format {
        padding: 3rem 2.5rem;
    }

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

    .slots-beginner {
        padding: 3rem 2.5rem;
    }

    .slots-support {
        align-items: start;
    }
}


@media (max-width: 480px) {

    .slots-heading h2 {
        font-size: 3.4rem;
    }

    .slot-format {
        padding: 2.5rem 2rem;
    }

    .slot-format h3 {
        font-size: 2.5rem;
    }

    .slots-beginner {
        padding: 2.5rem 2rem;
    }

    .beginner-item {
        grid-template-columns: 1fr;
    }

    .slots-support {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }
}
/* =========================================================
   Jackpots
========================================================= */

.jackpots-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(241, 18, 162, 0.11),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 75%,
            rgba(99, 40, 151, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #160a22 0%,
            #211031 48%,
            #12081d 100%
        );
}

.jackpots-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   Intro
========================================================= */

.jackpots-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}


/* Image */

.jackpots-image {
    position: relative;

    height: 58rem;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
}

.jackpots-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpots-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(14, 5, 21, 0.05) 30%,
            rgba(20, 7, 30, 0.9) 100%
        );
}

.jackpots-image-info {
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;

    z-index: 2;
}

.jackpots-image-info > span {
    display: block;

    margin-bottom: 1rem;

    color: var(--main-color);

    font-size: 1.2rem;
    font-weight: 600;

    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.jackpots-image-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.jackpots-image-stat strong {
    color: #fff;

    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
}

.jackpots-image-stat p {
    max-width: 22rem;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.3rem;
    line-height: 1.5;
}


/* =========================================================
   Text
========================================================= */

.jackpots-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;

    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.jackpots-content h2 {
    max-width: 72rem;

    margin-bottom: 2.3rem;

    color: #fff;

    font-size: clamp(3.7rem, 5vw, 5.3rem);
    font-weight: 600;
    line-height: 1.1;
}

.jackpots-content > p {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.62);

    font-size: 1.55rem;
    line-height: 1.82;
}

.jackpots-content .jackpots-lead {
    color: rgba(255, 255, 255, 0.88);

    font-size: 1.75rem;
}


/* Key Facts */

.jackpots-key-facts {
    display: grid;
    gap: 1rem;

    margin-top: 3rem;
}

.jackpot-key-fact {
    display: grid;
    grid-template-columns: 4.8rem 1fr;

    gap: 1.4rem;
    align-items: center;

    padding: 1.6rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.jackpot-key-fact > i {
    width: 4.8rem;
    height: 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 0.9rem;

    font-size: 1.7rem;
}

.jackpot-key-fact span {
    display: block;

    margin-bottom: 0.2rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.1rem;

    letter-spacing: 0.07rem;
    text-transform: uppercase;
}

.jackpot-key-fact strong {
    color: #fff;

    font-size: 1.5rem;
    font-weight: 500;
}


/* =========================================================
   Systems
========================================================= */

.jackpot-systems {
    margin-top: 8rem;
}

.jackpot-systems-heading {
    max-width: 76rem;
    margin-bottom: 4rem;
}

.jackpot-systems-heading > span {
    display: block;

    margin-bottom: 0.8rem;

    color: var(--main-color);

    font-size: 1.2rem;
    font-weight: 600;

    letter-spacing: 0.11rem;
    text-transform: uppercase;
}

.jackpot-systems-heading h3 {
    margin-bottom: 1.5rem;

    color: #fff;

    font-size: 3.6rem;
    font-weight: 600;
}

.jackpot-systems-heading p {
    color: rgba(255, 255, 255, 0.58);

    font-size: 1.5rem;
    line-height: 1.75;
}


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

    gap: 1.4rem;
}

.jackpot-system {
    min-height: 19rem;

    padding: 2.4rem;

    background:
        linear-gradient(
            145deg,
            rgba(74, 32, 104, 0.4),
            rgba(32, 13, 49, 0.75)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.4rem;
}

.jackpot-system-featured {
    grid-column: span 2;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.16),
            transparent 22rem
        ),
        linear-gradient(
            145deg,
            #38184d,
            #20102e
        );
}

.jackpot-system-icon {
    width: 4.8rem;
    height: 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2rem;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 1rem;

    font-size: 1.8rem;
}

.jackpot-system > span {
    display: block;

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.38);

    font-size: 1rem;
    font-weight: 500;

    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.jackpot-system h4 {
    color: #fff;

    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.3;
}

.jackpot-system p {
    margin-top: 1rem;

    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Mystery Jackpot
========================================================= */

.mystery-jackpot {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2.5rem;
    align-items: center;

    margin-top: 6rem;
    padding: 4rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.13),
            transparent 30rem
        ),
        linear-gradient(
            120deg,
            #321446,
            #1b0c28
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.8rem;
}

.mystery-jackpot-icon {
    width: 7rem;
    height: 7rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--secondary-color),
            var(--main-color)
        );

    border-radius: 1.5rem;

    font-size: 2.6rem;
}

.mystery-jackpot-content span {
    display: block;

    margin-bottom: 0.5rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;

    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.mystery-jackpot-content h3 {
    margin-bottom: 1rem;

    color: #fff;

    font-size: 2.7rem;
    font-weight: 600;
}

.mystery-jackpot-content p {
    max-width: 95rem;

    color: rgba(255, 255, 255, 0.6);

    font-size: 1.45rem;
    line-height: 1.75;
}


/* =========================================================
   Values
========================================================= */

.jackpot-values {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;

    gap: 5rem;

    margin-top: 2rem;
    padding: 4rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.jackpot-values-heading {
    display: grid;
    grid-template-columns: 4.8rem 1fr;

    gap: 1.5rem;
}

.jackpot-values-heading > i {
    width: 4.8rem;
    height: 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.08);

    border-radius: 1rem;

    font-size: 1.8rem;
}

.jackpot-values-heading span {
    display: block;

    margin-bottom: 0.5rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;

    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.jackpot-values-heading h3 {
    color: #fff;

    font-size: 2.2rem;
    line-height: 1.3;
}

.jackpot-values-content p {
    margin-bottom: 1.2rem;

    color: rgba(255, 255, 255, 0.56);

    font-size: 1.4rem;
    line-height: 1.7;
}

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


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

    .jackpots-intro {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

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


@media (max-width: 850px) {

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

    .jackpots-image {
        height: 48rem;
    }

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

    .jackpot-values {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


@media (max-width: 600px) {

    .jackpots-section {
        padding: 7rem 5%;
    }

    .jackpots-image {
        height: 38rem;
    }

    .jackpots-content h2 {
        font-size: 3.5rem;
    }

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

    .jackpot-system-featured {
        grid-column: auto;
    }

    .mystery-jackpot {
        grid-template-columns: 1fr;
        padding: 3rem 2.5rem;
    }

    .jackpot-values {
        padding: 3rem 2.5rem;
    }
}

/* =========================================================
   Live Table Games
========================================================= */

.table-games-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(241, 18, 162, 0.1),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(91, 37, 139, 0.2),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #12081d 0%,
            #1c0d2b 50%,
            #13091f 100%
        );
}

.table-games-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* Heading */

.table-games-heading {
    max-width: 90rem;
    margin-bottom: 6rem;
}

.table-games-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.table-games-heading h2 {
    margin-bottom: 2rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.6rem);
    font-weight: 600;
    line-height: 1.1;
}

.table-games-heading p {
    max-width: 86rem;
    margin-bottom: 1.4rem;

    color: rgba(255, 255, 255, 0.64);

    font-size: 1.6rem;
    line-height: 1.82;
}


/* =========================================================
   Overview Stats
========================================================= */

.table-games-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;
    margin-bottom: 6rem;
}

.table-overview-stat {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(79, 34, 111, 0.42),
            rgba(31, 13, 47, 0.7)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.4rem;
}

.table-overview-stat span {
    display: block;

    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.42);

    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.table-overview-stat strong {
    display: block;

    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
}

.table-overview-stat p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.5;
}


/* =========================================================
   Game Cards
========================================================= */

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

    gap: 2rem;
}

.table-game-card {
    padding: 4rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.08),
            transparent 25rem
        ),
        linear-gradient(
            145deg,
            #28113a,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

.table-game-featured {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.15),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            #35164d,
            #1d0d2c
        );
}

.table-game-poker {
    grid-column: 1 / -1;
}


/* Header */

.table-game-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    margin-bottom: 2.5rem;
}

.table-game-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--secondary-color),
            var(--main-color)
        );

    border-radius: 1.2rem;

    font-size: 2.1rem;
}

.table-game-top > span {
    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}


/* Typography */

.table-game-card h3 {
    margin-bottom: 1.6rem;

    color: #fff;

    font-size: 3rem;
    font-weight: 600;
}

.table-game-card > p {
    margin-bottom: 2.5rem;

    color: rgba(255, 255, 255, 0.62);

    font-size: 1.5rem;
    line-height: 1.8;
}


/* Game Data */

.table-game-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1rem;
    margin-bottom: 2rem;
}

.table-game-data > div {
    padding: 1.7rem;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.table-game-data span {
    display: block;

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.table-game-data strong {
    color: #fff;

    font-size: 1.5rem;
    font-weight: 500;
}


/* Limits */

.table-limit-list {
    display: grid;
    gap: 0.7rem;
}

.table-limit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding: 1.4rem 1.6rem;

    background: rgba(255, 255, 255, 0.035);

    border-left: 2px solid rgba(241, 18, 162, 0.55);
    border-radius: 0.5rem;
}

.table-limit-row span {
    color: rgba(255, 255, 255, 0.54);

    font-size: 1.3rem;
}

.table-limit-row strong {
    color: #fff;

    font-size: 1.35rem;
    font-weight: 500;
}


/* Notes */

.table-game-note {
    display: grid;
    grid-template-columns: 4.2rem 1fr;

    gap: 1.4rem;
    align-items: center;

    margin-top: 2rem;
    padding: 1.6rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.table-game-note i {
    width: 4.2rem;
    height: 4.2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 0.8rem;

    font-size: 1.6rem;
}

.table-game-note p {
    color: rgba(255, 255, 255, 0.54);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Classic Hours
========================================================= */

.classic-hours {
    display: grid;
    grid-template-columns: auto 1fr auto;

    gap: 2.5rem;
    align-items: center;

    margin-top: 6rem;
    padding: 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.12),
            transparent 28rem
        ),
        linear-gradient(
            120deg,
            #321548,
            #1a0c28
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
}

.classic-hours-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.1);

    border-radius: 50%;

    font-size: 2.2rem;
}

.classic-hours-main > span,
.classic-hours-poker span {
    display: block;

    margin-bottom: 0.5rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

.classic-hours-main h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2.2rem;
    font-weight: 500;
}

.classic-hours-main p {
    max-width: 82rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.65;
}

.classic-hours-poker {
    min-width: 13rem;

    padding-left: 2.5rem;

    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.classic-hours-poker strong {
    color: #fff;

    font-size: 2.4rem;
    font-weight: 600;
}


/* =========================================================
   First Visit
========================================================= */

.table-games-first-visit {
    margin-top: 2rem;
    padding: 4rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.6rem;
}

.table-games-first-heading {
    margin-bottom: 3rem;
}

.table-games-first-heading span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.table-games-first-heading h3 {
    color: #fff;

    font-size: 2.8rem;
    font-weight: 600;
}

.table-first-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}

.table-first-item {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 1.4rem;

    padding: 2rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.table-first-item > span {
    color: rgba(241, 18, 162, 0.55);

    font-size: 1.8rem;
    font-weight: 600;
}

.table-first-item h4 {
    margin-bottom: 0.6rem;

    color: #fff;

    font-size: 1.6rem;
    font-weight: 500;
}

.table-first-item p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

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

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


@media (max-width: 800px) {

    .table-games-section {
        padding: 7rem 5%;
    }

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

    .table-game-poker {
        grid-column: auto;
    }

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

    .classic-hours {
        grid-template-columns: auto 1fr;
    }

    .classic-hours-poker {
        grid-column: 1 / -1;

        padding-top: 2rem;
        padding-left: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }
}


@media (max-width: 550px) {

    .table-games-heading h2 {
        font-size: 3.4rem;
    }

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

    .table-game-card {
        padding: 2.8rem 2rem;
    }

    .table-game-card h3 {
        font-size: 2.5rem;
    }

    .table-limit-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.4rem;
    }

    .classic-hours {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }

    .table-games-first-visit {
        padding: 2.5rem 2rem;
    }
}
/* =========================================================
   Roulette
========================================================= */

.roulette-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(241, 18, 162, 0.1),
            transparent 38rem
        ),
        radial-gradient(
            circle at 0% 80%,
            rgba(91, 37, 139, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #140920 0%,
            #1f0e30 50%,
            #12081d 100%
        );
}

.roulette-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   Heading
========================================================= */

.roulette-heading {
    max-width: 92rem;
    margin-bottom: 6rem;
}

.roulette-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.roulette-heading h2 {
    margin-bottom: 2.2rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.6rem);
    font-weight: 600;
    line-height: 1.1;
}

.roulette-heading p {
    max-width: 88rem;
    margin-bottom: 1.4rem;

    color: rgba(255, 255, 255, 0.63);

    font-size: 1.6rem;
    line-height: 1.82;
}

.roulette-heading .roulette-lead {
    color: rgba(255, 255, 255, 0.87);

    font-size: 1.75rem;
}


/* =========================================================
   Facts
========================================================= */

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

    gap: 1.5rem;
    margin-bottom: 7rem;
}

.roulette-fact {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(82, 34, 116, 0.42),
            rgba(31, 13, 48, 0.72)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.roulette-fact-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2.3rem;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border: 1px solid rgba(241, 18, 162, 0.13);
    border-radius: 1rem;

    font-size: 1.9rem;
}

.roulette-fact > span {
    display: block;

    margin-bottom: 0.6rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.roulette-fact h3 {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 2.3rem;
    font-weight: 600;
}

.roulette-fact p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Limits
========================================================= */

.roulette-limits {
    padding: 4.5rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.1),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #28113b,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 1.7rem 5rem rgba(0, 0, 0, 0.22);
}

.roulette-limits-heading {
    max-width: 76rem;
    margin-bottom: 3.5rem;
}

.roulette-limits-heading > span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.roulette-limits-heading h3 {
    margin-bottom: 1.3rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.roulette-limits-heading p {
    color: rgba(255, 255, 255, 0.57);

    font-size: 1.45rem;
    line-height: 1.75;
}


/* Limit Cards */

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

    gap: 1.5rem;
}

.roulette-limit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;

    padding: 2.5rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.roulette-limit-number {
    min-width: 7rem;
}

.roulette-limit-number strong {
    display: block;

    color: var(--main-color);

    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.roulette-limit-number span {
    display: block;

    margin-top: 0.4rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.1rem;
    text-transform: uppercase;
}

.roulette-limit-content > span {
    display: block;

    margin-bottom: 0.3rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
}

.roulette-limit-content h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2.2rem;
    font-weight: 600;
}

.roulette-limit-content p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1.25rem;
    line-height: 1.6;
}


/* =========================================================
   Live Format
========================================================= */

.roulette-live-format {
    margin-top: 6rem;
}

.roulette-live-heading {
    max-width: 74rem;
    margin-bottom: 3rem;
}

.roulette-live-heading span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.roulette-live-heading h3 {
    color: #fff;

    font-size: 3.1rem;
    font-weight: 600;
    line-height: 1.25;
}

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

    gap: 1.5rem;
}

.roulette-live-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;

    padding: 2.5rem;

    background:
        linear-gradient(
            145deg,
            rgba(69, 29, 98, 0.34),
            rgba(28, 12, 43, 0.62)
        );

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.roulette-step {
    color: rgba(241, 18, 162, 0.55);

    font-size: 1.8rem;
    font-weight: 600;
}

.roulette-live-item h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 1.65rem;
    font-weight: 500;
}

.roulette-live-item p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   Payout
========================================================= */

.roulette-payout {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2rem;
    align-items: center;

    margin-top: 2rem;
    padding: 3rem 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.11),
            transparent 25rem
        ),
        #21102f;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.roulette-payout-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 50%;

    font-size: 2.2rem;
}

.roulette-payout span {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.roulette-payout h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.roulette-payout p {
    max-width: 95rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1050px) {

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

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

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


@media (max-width: 700px) {

    .roulette-section {
        padding: 7rem 5%;
    }

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

    .roulette-limits {
        padding: 3rem 2.5rem;
    }

    .roulette-heading h2 {
        font-size: 3.5rem;
    }

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


@media (max-width: 480px) {

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

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

    .roulette-limits-heading h3,
    .roulette-live-heading h3 {
        font-size: 2.6rem;
    }
}

/* =========================================================
   Blackjack
========================================================= */

.blackjack-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(241, 18, 162, 0.1),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(96, 39, 145, 0.2),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #1d0d2d 50%,
            #12081d 100%
        );
}

.blackjack-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   Heading
========================================================= */

.blackjack-heading {
    max-width: 92rem;
    margin-bottom: 6rem;
}

.blackjack-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.blackjack-heading h2 {
    margin-bottom: 2.2rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.6rem);
    font-weight: 600;
    line-height: 1.1;
}

.blackjack-heading p {
    max-width: 88rem;
    margin-bottom: 1.4rem;

    color: rgba(255, 255, 255, 0.63);

    font-size: 1.6rem;
    line-height: 1.82;
}

.blackjack-heading .blackjack-lead {
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.75rem;
}


/* =========================================================
   Facts
========================================================= */

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

    gap: 1.5rem;
    margin-bottom: 7rem;
}

.blackjack-fact {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(82, 34, 116, 0.42),
            rgba(31, 13, 48, 0.72)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.blackjack-fact-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2.3rem;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.09);

    border: 1px solid rgba(241, 18, 162, 0.13);
    border-radius: 1rem;

    font-size: 1.9rem;
}

.blackjack-fact > span {
    display: block;

    margin-bottom: 0.6rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.blackjack-fact h3 {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 2.3rem;
    font-weight: 600;
}

.blackjack-fact p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Limits
========================================================= */

.blackjack-limits {
    padding: 4.5rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.1),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #28113b,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 1.7rem 5rem rgba(0, 0, 0, 0.22);
}

.blackjack-limits-heading {
    max-width: 76rem;
    margin-bottom: 3.5rem;
}

.blackjack-limits-heading > span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.blackjack-limits-heading h3 {
    margin-bottom: 1.3rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.blackjack-limits-heading p {
    color: rgba(255, 255, 255, 0.57);

    font-size: 1.45rem;
    line-height: 1.75;
}


/* Limit Cards */

.blackjack-limit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}

.blackjack-limit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;

    padding: 2.5rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.blackjack-limit-number {
    min-width: 7rem;
}

.blackjack-limit-number strong {
    display: block;

    color: var(--main-color);

    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.blackjack-limit-number span {
    display: block;

    margin-top: 0.4rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.1rem;
    text-transform: uppercase;
}

.blackjack-limit-content > span {
    display: block;

    margin-bottom: 0.3rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
}

.blackjack-limit-content h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2.2rem;
    font-weight: 600;
}

.blackjack-limit-content p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1.25rem;
    line-height: 1.6;
}


/* =========================================================
   How It Works
========================================================= */

.blackjack-how {
    margin-top: 6rem;
}

.blackjack-how-heading {
    max-width: 76rem;
    margin-bottom: 3rem;
}

.blackjack-how-heading span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.blackjack-how-heading h3 {
    margin-bottom: 1.2rem;

    color: #fff;

    font-size: 3.1rem;
    font-weight: 600;
}

.blackjack-how-heading p {
    color: rgba(255, 255, 255, 0.56);

    font-size: 1.45rem;
    line-height: 1.75;
}

.blackjack-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}

.blackjack-how-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;

    padding: 2.5rem;

    background:
        linear-gradient(
            145deg,
            rgba(69, 29, 98, 0.34),
            rgba(28, 12, 43, 0.62)
        );

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.blackjack-step {
    color: rgba(241, 18, 162, 0.55);

    font-size: 1.8rem;
    font-weight: 600;
}

.blackjack-how-item h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 1.65rem;
    font-weight: 500;
}

.blackjack-how-item p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   Additional Chances
========================================================= */

.blackjack-extra {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2rem;
    align-items: center;

    margin-top: 2rem;
    padding: 3rem 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.12),
            transparent 25rem
        ),
        #21102f;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.blackjack-extra-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.09);

    border-radius: 50%;

    font-size: 2.2rem;
}

.blackjack-extra span {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.blackjack-extra h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.blackjack-extra p {
    max-width: 95rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1050px) {

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

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

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

@media (max-width: 700px) {

    .blackjack-section {
        padding: 7rem 5%;
    }

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

    .blackjack-limits {
        padding: 3rem 2.5rem;
    }

    .blackjack-heading h2 {
        font-size: 3.5rem;
    }

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

@media (max-width: 480px) {

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

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

    .blackjack-limits-heading h3,
    .blackjack-how-heading h3 {
        font-size: 2.6rem;
    }
}

/* =========================================================
   Poker
========================================================= */

.poker-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(241, 18, 162, 0.1),
            transparent 36rem
        ),
        radial-gradient(
            circle at 95% 80%,
            rgba(102, 42, 153, 0.19),
            transparent 44rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #201031 50%,
            #12081c 100%
        );
}

.poker-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   Intro
========================================================= */

.poker-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 6rem;
    align-items: center;
}


/* Image */

.poker-image {
    position: relative;

    height: 56rem;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
}

.poker-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.poker-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(13, 5, 20, 0.04) 25%,
            rgba(18, 7, 29, 0.92) 100%
        );
}

.poker-image-info {
    position: absolute;

    left: 3rem;
    right: 3rem;
    bottom: 3rem;

    z-index: 2;
}

.poker-image-info > span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;

    letter-spacing: 0.11rem;
    text-transform: uppercase;
}

.poker-image-info h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 3rem;
    font-weight: 600;
}

.poker-image-info p {
    max-width: 40rem;

    color: rgba(255, 255, 255, 0.66);

    font-size: 1.35rem;
    line-height: 1.6;
}


/* Content */

.poker-label {
    display: inline-flex;
    align-items: center;

    gap: 1rem;
    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;

    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.poker-content h2 {
    margin-bottom: 2.2rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.poker-content > p {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.63);

    font-size: 1.55rem;
    line-height: 1.82;
}

.poker-content .poker-lead {
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.75rem;
}


/* =========================================================
   Facts
========================================================= */

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

    gap: 1.5rem;
    margin-top: 7rem;
}

.poker-fact {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(80, 34, 112, 0.42),
            rgba(30, 13, 47, 0.72)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.poker-fact-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2.3rem;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.09);

    border: 1px solid rgba(241, 18, 162, 0.13);
    border-radius: 1rem;

    font-size: 1.9rem;
}

.poker-fact > span {
    display: block;

    margin-bottom: 0.6rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.05rem;
    font-weight: 500;

    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.poker-fact h3 {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 2.3rem;
    font-weight: 600;
}

.poker-fact p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Difference
========================================================= */

.poker-difference {
    margin-top: 7rem;
    padding: 4.5rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.11),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #28113a,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
}

.poker-difference-heading {
    max-width: 78rem;
    margin-bottom: 3.5rem;
}

.poker-difference-heading > span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;

    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.poker-difference-heading h3 {
    margin-bottom: 1.2rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.poker-difference-heading p {
    color: rgba(255, 255, 255, 0.57);

    font-size: 1.45rem;
    line-height: 1.75;
}


/* Comparison */

.poker-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;
}

.poker-comparison-card {
    padding: 3rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.4rem;
}

.poker-comparison-active {
    background:
        linear-gradient(
            145deg,
            rgba(94, 40, 130, 0.42),
            rgba(42, 17, 61, 0.7)
        );

    border-color: rgba(241, 18, 162, 0.18);
}

.poker-comparison-icon {
    width: 5.3rem;
    height: 5.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2rem;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 1rem;

    font-size: 2rem;
}

.poker-comparison-card > span {
    display: block;

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.05rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.poker-comparison-card h4 {
    margin-bottom: 1.2rem;

    color: #fff;

    font-size: 2.4rem;
    font-weight: 600;
}

.poker-comparison-card > p {
    margin-bottom: 2rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.7;
}

.poker-comparison-point {
    display: flex;
    align-items: flex-start;

    gap: 1rem;
    margin-top: 1rem;
}

.poker-comparison-point i {
    margin-top: 0.3rem;

    color: var(--main-color);

    font-size: 1.2rem;
}

.poker-comparison-point span {
    color: rgba(255, 255, 255, 0.68);

    font-size: 1.3rem;
    line-height: 1.5;
}

.poker-comparison-point.muted i,
.poker-comparison-point.muted span {
    color: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   Concept
========================================================= */

.poker-concept {
    margin-top: 6rem;
}

.poker-concept-heading {
    max-width: 78rem;
    margin-bottom: 3rem;
}

.poker-concept-heading span {
    display: block;

    margin-bottom: 0.7rem;

    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;

    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.poker-concept-heading h3 {
    margin-bottom: 1.2rem;

    color: #fff;

    font-size: 3.1rem;
    font-weight: 600;
}

.poker-concept-heading p {
    color: rgba(255, 255, 255, 0.56);

    font-size: 1.45rem;
    line-height: 1.75;
}

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

    gap: 1.5rem;
}

.poker-concept-item {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 1.5rem;
    padding: 2.5rem;

    background:
        linear-gradient(
            145deg,
            rgba(69, 29, 98, 0.34),
            rgba(28, 12, 43, 0.62)
        );

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.poker-concept-number {
    color: rgba(241, 18, 162, 0.55);

    font-size: 1.8rem;
    font-weight: 600;
}

.poker-concept-item h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 1.65rem;
    font-weight: 500;
}

.poker-concept-item p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   Schedule
========================================================= */

.poker-schedule {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2rem;
    align-items: center;

    margin-top: 2rem;
    padding: 3rem 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.11),
            transparent 25rem
        ),
        #21102f;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.poker-schedule-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.09);

    border-radius: 50%;

    font-size: 2.2rem;
}

.poker-schedule span {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;

    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.poker-schedule h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.poker-schedule p {
    max-width: 95rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1050px) {

    .poker-intro {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

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

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


@media (max-width: 800px) {

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

    .poker-image {
        height: 46rem;
    }

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


@media (max-width: 600px) {

    .poker-section {
        padding: 7rem 5%;
    }

    .poker-image {
        height: 38rem;
    }

    .poker-content h2 {
        font-size: 3.5rem;
    }

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

    .poker-difference {
        padding: 3rem 2.3rem;
    }

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

    .poker-schedule {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }
}

/* =========================================================
   First Visit
========================================================= */

.first-visit-section {
    padding: 10rem 5%;
    background:
        radial-gradient(circle at 90% 10%, rgba(241, 18, 162, 0.09), transparent 38rem),
        radial-gradient(circle at 5% 85%, rgba(96, 39, 145, 0.18), transparent 42rem),
        linear-gradient(135deg, #12081d 0%, #1d0d2d 50%, #13091f 100%);
}

.first-visit-shell,
.hours-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.first-visit-heading {
    max-width: 92rem;
    margin-bottom: 6rem;
}

.first-visit-label,
.hours-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .14rem;
    text-transform: uppercase;
}

.first-visit-heading h2,
.hours-heading h2 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.first-visit-heading p,
.hours-heading p {
    max-width: 88rem;
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,.63);
    font-size: 1.6rem;
    line-height: 1.82;
}

.first-visit-heading .first-visit-lead {
    color: rgba(255,255,255,.87);
    font-size: 1.75rem;
}


/* Options */

.first-visit-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.first-visit-option {
    padding: 3.5rem;
    background:
        linear-gradient(
            145deg,
            rgba(79, 34, 111, .42),
            rgba(30, 13, 47, .72)
        );
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.7rem;
}

.first-visit-option-top {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2.2rem;
}

.first-visit-option-icon {
    width: 5.2rem;
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    font-size: 2rem;
}

.first-visit-option-top > span {
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.first-visit-option h3 {
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 2.5rem;
}

.first-visit-option > p {
    color: rgba(255,255,255,.57);
    font-size: 1.4rem;
    line-height: 1.75;
}

.first-visit-stake {
    margin: 2rem 0;
    padding: 1.5rem 1.7rem;
    background: rgba(255,255,255,.04);
    border-left: 2px solid var(--main-color);
    border-radius: .7rem;
}

.first-visit-stake span {
    display: block;
    color: rgba(255,255,255,.4);
    font-size: 1rem;
    text-transform: uppercase;
}

.first-visit-stake strong {
    display: block;
    margin-top: .3rem;
    color: #fff;
    font-size: 2rem;
}

.first-visit-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.3rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,.035);
    border-radius: .9rem;
}

.first-visit-note i {
    color: var(--main-color);
    font-size: 1.5rem;
}

.first-visit-note p {
    color: rgba(255,255,255,.52);
    font-size: 1.3rem;
    line-height: 1.6;
}

.first-visit-reference {
    margin-top: 2rem;
    font-size: 1.3rem !important;
}

.first-visit-reference a,
.first-visit-poker a {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: .3rem;
}


/* Poker */

.first-visit-poker {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 3rem 3.5rem;
    background: #21102f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.first-visit-poker-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 50%;
    font-size: 2rem;
}

.first-visit-poker span,
.first-visit-guide-heading span {
    display: block;
    margin-bottom: .5rem;
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.first-visit-poker h3 {
    margin-bottom: .7rem;
    color: #fff;
    font-size: 2rem;
}

.first-visit-poker p {
    color: rgba(255,255,255,.55);
    font-size: 1.35rem;
    line-height: 1.7;
}


/* Guide */

.first-visit-guide {
    margin-top: 6rem;
}

.first-visit-guide-heading {
    margin-bottom: 2.5rem;
}

.first-visit-guide-heading h3 {
    color: #fff;
    font-size: 3rem;
}

.first-visit-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.first-visit-guide-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    padding: 2.4rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.2rem;
}

.first-visit-guide-item > span {
    color: rgba(241,18,162,.55);
    font-size: 1.8rem;
    font-weight: 600;
}

.first-visit-guide-item h4 {
    margin-bottom: .6rem;
    color: #fff;
    font-size: 1.6rem;
}

.first-visit-guide-item p {
    color: rgba(255,255,255,.51);
    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   Opening Hours
========================================================= */

.hours-section {
    padding: 10rem 5%;
    background:
        radial-gradient(circle at 5% 10%, rgba(241,18,162,.08), transparent 38rem),
        radial-gradient(circle at 95% 85%, rgba(96,39,145,.18), transparent 42rem),
        linear-gradient(135deg, #150a22 0%, #211031 50%, #12081d 100%);
}

.hours-heading {
    max-width: 90rem;
    margin-bottom: 6rem;
}

.hours-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hours-card {
    padding: 3.2rem;
    background:
        linear-gradient(
            145deg,
            rgba(82,34,116,.42),
            rgba(31,13,48,.72)
        );
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.6rem;
}

.hours-card-classic {
    background:
        radial-gradient(circle at 100% 0%, rgba(241,18,162,.12), transparent 23rem),
        linear-gradient(145deg, #321548, #1c0c2b);
}

.hours-card-top {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2.7rem;
}

.hours-card-icon {
    width: 5.2rem;
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    font-size: 2rem;
}

.hours-card-top span {
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.hours-card h3 {
    margin-bottom: 1.4rem;
    color: #fff;
    font-size: 3rem;
}

.hours-card p {
    min-height: 12rem;
    color: rgba(255,255,255,.55);
    font-size: 1.4rem;
    line-height: 1.7;
}

.hours-card-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.hours-card-meta span {
    color: rgba(255,255,255,.4);
    font-size: 1.15rem;
}

.hours-card-meta strong {
    color: #fff;
    font-size: 1.25rem;
}


/* Timeline */

.hours-timeline {
    margin-top: 6rem;
    padding: 4rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.6rem;
}

.hours-timeline-heading {
    margin-bottom: 3rem;
}

.hours-timeline-heading span {
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hours-timeline-heading h3 {
    margin-top: .6rem;
    color: #fff;
    font-size: 2.8rem;
}

.hours-timeline-track {
    display: grid;
    gap: 0;
}

.hours-timeline-item {
    display: grid;
    grid-template-columns: 8rem 2rem 1fr;
    gap: 1.5rem;
    min-height: 8rem;
}

.hours-time {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
}

.hours-dot {
    position: relative;
}

.hours-dot::before {
    content: "";
    position: absolute;
    top: .5rem;
    left: 50%;
    width: 1rem;
    height: 1rem;
    transform: translateX(-50%);
    background: var(--main-color);
    border-radius: 50%;
}

.hours-dot::after {
    content: "";
    position: absolute;
    top: 1.5rem;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,.12);
}

.hours-timeline-item:last-child .hours-dot::after {
    display: none;
}

.hours-event h4 {
    margin-bottom: .4rem;
    color: #fff;
    font-size: 1.5rem;
}

.hours-event p {
    color: rgba(255,255,255,.49);
    font-size: 1.25rem;
}


/* Closed Days */

.hours-closed {
    margin-top: 6rem;
    padding: 4rem;
    background:
        linear-gradient(
            145deg,
            rgba(62,27,88,.55),
            rgba(28,12,43,.78)
        );
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.6rem;
}

.hours-closed-heading {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-bottom: 3rem;
}

.hours-closed-icon {
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    font-size: 2rem;
}

.hours-closed-heading span,
.hours-exception span {
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08rem;
}

.hours-closed-heading h3 {
    margin-top: .4rem;
    color: #fff;
    font-size: 2.3rem;
}

.hours-closed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hours-closed-item {
    padding: 1.6rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: .9rem;
}

.hours-closed-item span {
    color: rgba(255,255,255,.72);
    font-size: 1.35rem;
}


/* Exception */

.hours-exception {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding: 3rem 3.5rem;
    background: #21102f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.hours-exception-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 50%;
    font-size: 2rem;
}

.hours-exception h3 {
    margin: .5rem 0 .7rem;
    color: #fff;
    font-size: 2rem;
}

.hours-exception p {
    color: rgba(255,255,255,.55);
    font-size: 1.35rem;
    line-height: 1.65;
}


/* Responsive */

@media (max-width: 1050px) {
    .first-visit-guide-grid,
    .hours-main-grid {
        grid-template-columns: 1fr;
    }

    .hours-card p {
        min-height: auto;
    }
}

@media (max-width: 800px) {
    .first-visit-options {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .first-visit-section,
    .hours-section {
        padding: 7rem 5%;
    }

    .first-visit-heading h2,
    .hours-heading h2 {
        font-size: 3.4rem;
    }

    .first-visit-option {
        padding: 2.7rem 2rem;
    }

    .first-visit-poker,
    .hours-exception {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }

    .first-visit-guide-item {
        grid-template-columns: 1fr;
    }

    .hours-timeline,
    .hours-closed {
        padding: 3rem 2rem;
    }

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

    .hours-timeline-item {
        grid-template-columns: 6rem 1.5rem 1fr;
    }
}

/* =========================================================
   Entry, Age & ID
========================================================= */

.entry-section {
    padding: 10rem 5%;
    background:
        radial-gradient(circle at 92% 10%, rgba(241,18,162,.09), transparent 38rem),
        radial-gradient(circle at 5% 80%, rgba(96,39,145,.18), transparent 42rem),
        linear-gradient(135deg, #13091f 0%, #1e0e2e 50%, #12081d 100%);
}

.entry-shell,
.dress-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.entry-heading,
.dress-heading {
    max-width: 92rem;
    margin-bottom: 6rem;
}

.entry-label,
.dress-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .14rem;
    text-transform: uppercase;
}

.entry-heading h2,
.dress-heading h2 {
    margin-bottom: 2.1rem;
    color: #fff;
    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.entry-heading p,
.dress-heading p {
    max-width: 88rem;
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,.62);
    font-size: 1.6rem;
    line-height: 1.82;
}

.entry-heading .entry-lead,
.dress-heading .dress-lead {
    color: rgba(255,255,255,.87);
    font-size: 1.75rem;
}


/* Facts */

.entry-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 7rem;
}

.entry-fact {
    padding: 2.7rem 2.3rem;
    background:
        linear-gradient(
            145deg,
            rgba(82,34,116,.42),
            rgba(31,13,48,.72)
        );
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.entry-fact-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.3rem;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    font-size: 1.9rem;
}

.entry-fact > span {
    display: block;
    margin-bottom: .6rem;
    color: rgba(255,255,255,.4);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .08rem;
}

.entry-fact h3 {
    margin-bottom: .8rem;
    color: #fff;
    font-size: 2.4rem;
}

.entry-fact p {
    color: rgba(255,255,255,.52);
    font-size: 1.3rem;
    line-height: 1.6;
}


/* Documents */

.entry-documents {
    padding: 4.5rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(241,18,162,.09), transparent 28rem),
        linear-gradient(145deg, #28113a, #180b25);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2rem;
}

.entry-documents-heading {
    max-width: 78rem;
    margin-bottom: 3.5rem;
}

.entry-documents-heading span {
    color: var(--main-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.entry-documents-heading h3 {
    margin: .7rem 0 1.2rem;
    color: #fff;
    font-size: 3.2rem;
}

.entry-documents-heading p {
    color: rgba(255,255,255,.56);
    font-size: 1.45rem;
    line-height: 1.75;
}

.entry-documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.entry-document-group {
    padding: 3rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.4rem;
}

.entry-document-group-title {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.entry-document-group-title > i {
    font-size: 2rem;
}

.accepted .entry-document-group-title > i {
    color: #58d68d;
}

.rejected .entry-document-group-title > i {
    color: var(--main-color);
}

.entry-document-group-title span {
    display: block;
    color: rgba(255,255,255,.4);
    font-size: 1rem;
    text-transform: uppercase;
}

.entry-document-group-title h4 {
    margin-top: .3rem;
    color: #fff;
    font-size: 1.9rem;
}

.entry-document-list {
    display: grid;
    gap: 1rem;
}

.entry-document-item {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1.3rem;
    padding: 1.5rem;
    background: rgba(255,255,255,.03);
    border-radius: .9rem;
}

.entry-document-item > i {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.08);
    border-radius: .8rem;
    font-size: 1.5rem;
}

.entry-document-item h5 {
    margin-bottom: .4rem;
    color: #fff;
    font-size: 1.45rem;
}

.entry-document-item p {
    color: rgba(255,255,255,.5);
    font-size: 1.25rem;
    line-height: 1.55;
}


/* Entry Process */

.entry-process {
    margin-top: 6rem;
}

.entry-process-heading {
    margin-bottom: 2.8rem;
}

.entry-process-heading span {
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
}

.entry-process-heading h3 {
    margin-top: .6rem;
    color: #fff;
    font-size: 3rem;
}

.entry-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.entry-process-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    padding: 2.3rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.2rem;
}

.entry-process-item > span {
    color: rgba(241,18,162,.55);
    font-size: 1.8rem;
    font-weight: 600;
}

.entry-process-item h4 {
    margin-bottom: .6rem;
    color: #fff;
    font-size: 1.5rem;
}

.entry-process-item p {
    color: rgba(255,255,255,.5);
    font-size: 1.25rem;
    line-height: 1.6;
}


/* Warning */

.entry-warning,
.dress-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding: 3rem 3.5rem;
    background: #21102f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.entry-warning-icon,
.dress-summary-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 50%;
    font-size: 2rem;
}

.entry-warning span,
.dress-summary span {
    display: block;
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.entry-warning h3,
.dress-summary h3 {
    margin: .5rem 0 .7rem;
    color: #fff;
    font-size: 2rem;
}

.entry-warning p,
.dress-summary p {
    color: rgba(255,255,255,.55);
    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Dress Code
========================================================= */

.dress-section {
    padding: 10rem 5%;
    background:
        radial-gradient(circle at 5% 15%, rgba(241,18,162,.08), transparent 38rem),
        radial-gradient(circle at 95% 80%, rgba(96,39,145,.18), transparent 42rem),
        linear-gradient(135deg, #160a22 0%, #211031 50%, #13091f 100%);
}

.dress-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dress-card {
    padding: 2.8rem 2.3rem;
    background:
        linear-gradient(
            145deg,
            rgba(80,34,112,.42),
            rgba(30,13,47,.72)
        );
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.dress-card-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    color: var(--main-color);
    font-size: 1.9rem;
}

.dress-card > span {
    display: block;
    margin-bottom: .6rem;
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dress-card h3 {
    margin-bottom: .8rem;
    color: #fff;
    font-size: 1.9rem;
}

.dress-card p {
    color: rgba(255,255,255,.52);
    font-size: 1.3rem;
    line-height: 1.6;
}

.dress-card-restricted {
    background:
        linear-gradient(
            145deg,
            rgba(63,28,91,.38),
            rgba(26,11,40,.72)
        );
}


/* Cloakroom */

.cloakroom-block {
    margin-top: 6rem;
    padding: 4.5rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(241,18,162,.1), transparent 30rem),
        linear-gradient(145deg, #2a123d, #180b25);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2rem;
}

.cloakroom-heading {
    max-width: 78rem;
    margin-bottom: 3.5rem;
}

.cloakroom-heading span {
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cloakroom-heading h3 {
    margin: .7rem 0 1.2rem;
    color: #fff;
    font-size: 3.1rem;
}

.cloakroom-heading p {
    color: rgba(255,255,255,.56);
    font-size: 1.45rem;
    line-height: 1.75;
}

.cloakroom-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cloakroom-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    padding: 2.3rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.2rem;
}

.cloakroom-icon {
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.08);
    border-radius: .9rem;
    font-size: 1.7rem;
}

.cloakroom-item span {
    display: block;
    margin-bottom: .4rem;
    color: rgba(255,255,255,.4);
    font-size: 1rem;
    text-transform: uppercase;
}

.cloakroom-item h4 {
    margin-bottom: .6rem;
    color: #fff;
    font-size: 1.55rem;
}

.cloakroom-item p {
    color: rgba(255,255,255,.5);
    font-size: 1.25rem;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 1100px) {

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

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

    .cloakroom-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {

    .entry-documents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .entry-section,
    .dress-section {
        padding: 7rem 5%;
    }

    .entry-heading h2,
    .dress-heading h2 {
        font-size: 3.4rem;
    }

    .entry-facts,
    .dress-overview,
    .entry-process-grid {
        grid-template-columns: 1fr;
    }

    .entry-documents,
    .cloakroom-block {
        padding: 3rem 2rem;
    }

    .entry-document-group {
        padding: 2.2rem 1.6rem;
    }

    .entry-document-item,
    .entry-process-item,
    .cloakroom-item {
        grid-template-columns: 1fr;
    }

    .entry-warning,
    .dress-summary {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }
}

/* =========================================================
   M-Card
========================================================= */

.member-card-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(241, 18, 162, 0.09),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(96, 39, 145, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #1f0f30 50%,
            #12081d 100%
        );
}

.member-card-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   Heading
========================================================= */

.member-card-heading {
    max-width: 92rem;
    margin-bottom: 6rem;
}

.member-card-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.member-card-heading h2 {
    margin-bottom: 2.1rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.member-card-heading p {
    max-width: 88rem;
    margin-bottom: 1.4rem;

    color: rgba(255, 255, 255, 0.62);

    font-size: 1.6rem;
    line-height: 1.82;
}

.member-card-heading .member-card-lead {
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.75rem;
}


/* =========================================================
   Facts
========================================================= */

.member-card-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;
    margin-bottom: 7rem;
}

.member-card-fact {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(82, 34, 116, 0.42),
            rgba(31, 13, 48, 0.72)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.member-card-fact-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2.3rem;

    color: var(--main-color);
    background: rgba(241, 18, 162, 0.09);

    border-radius: 1rem;

    font-size: 1.9rem;
}

.member-card-fact > span {
    display: block;

    margin-bottom: 0.6rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1.05rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.member-card-fact h3 {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 2.25rem;
    font-weight: 600;
}

.member-card-fact p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Benefits
========================================================= */

.member-card-benefits {
    padding: 4.5rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.1),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #2a123d,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
}

.member-card-benefits-heading {
    max-width: 78rem;
    margin-bottom: 3.5rem;
}

.member-card-benefits-heading span {
    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.member-card-benefits-heading h3 {
    margin: 0.7rem 0 1.2rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.member-card-benefits-heading p {
    color: rgba(255, 255, 255, 0.56);

    font-size: 1.45rem;
    line-height: 1.75;
}


.member-card-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;
}

.member-card-benefit {
    padding: 2.5rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.member-benefit-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2rem;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 1rem;

    font-size: 1.8rem;
}

.member-card-benefit > span {
    display: block;

    margin-bottom: 0.5rem;

    color: rgba(241, 18, 162, 0.55);

    font-size: 1.25rem;
    font-weight: 600;
}

.member-card-benefit h4 {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 1.75rem;
    font-weight: 500;
}

.member-card-benefit p {
    color: rgba(255, 255, 255, 0.51);

    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   First Visit
========================================================= */

.member-card-first-visit,
.member-card-privacy {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2rem;
    align-items: center;

    margin-top: 2rem;
    padding: 3rem 3.5rem;

    background: #21102f;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.member-card-first-icon,
.member-card-privacy-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 50%;

    font-size: 2rem;
}

.member-card-first-visit span,
.member-card-privacy span {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.member-card-first-visit h3,
.member-card-privacy h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.member-card-first-visit p,
.member-card-privacy p {
    max-width: 95rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Biometric
========================================================= */

.member-card-biometric {
    margin-top: 7rem;
    padding: 4.5rem;

    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(79, 23, 135, 0.22),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #29113c,
            #180b25
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
}

.member-card-biometric-heading {
    max-width: 82rem;
    margin-bottom: 3.5rem;
}

.member-card-biometric-heading span {
    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.member-card-biometric-heading h3 {
    margin: 0.7rem 0 1.2rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.member-card-biometric-heading p {
    color: rgba(255, 255, 255, 0.56);

    font-size: 1.45rem;
    line-height: 1.75;
}


/* Process */

.biometric-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;
}

.biometric-process-item {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 1.5rem;
    padding: 2.5rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
}

.biometric-number {
    color: rgba(241, 18, 162, 0.55);

    font-size: 1.8rem;
    font-weight: 600;
}

.biometric-process-item h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 1.6rem;
    font-weight: 500;
}

.biometric-process-item p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

    .member-card-facts,
    .member-card-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .biometric-process {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .member-card-section {
        padding: 7rem 5%;
    }

    .member-card-heading h2 {
        font-size: 3.4rem;
    }

    .member-card-facts,
    .member-card-benefits-grid {
        grid-template-columns: 1fr;
    }

    .member-card-benefits,
    .member-card-biometric {
        padding: 3rem 2rem;
    }

    .member-card-first-visit,
    .member-card-privacy {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }

    .biometric-process-item {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   Bar & Dining
========================================================= */

.dining-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(241, 18, 162, 0.1),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(96, 39, 145, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #201030 50%,
            #12081d 100%
        );
}

.dining-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* Heading */

.dining-heading {
    max-width: 94rem;
    margin-bottom: 6rem;
}

.dining-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.dining-heading h2 {
    margin-bottom: 2.1rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.dining-heading p {
    max-width: 90rem;

    color: rgba(255, 255, 255, 0.63);

    font-size: 1.6rem;
    line-height: 1.82;
}

.dining-heading .dining-lead {
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.75rem;
}


/* =========================================================
   Main Cards
========================================================= */

.dining-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 2rem;
}

.dining-card {
    padding: 4rem;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;

    box-shadow: 0 1.7rem 5rem rgba(0, 0, 0, 0.22);
}

.dining-card-bar {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241, 18, 162, 0.15),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            #35164d,
            #1c0c2b
        );
}

.dining-card-restaurant {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(105, 48, 158, 0.16),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #2a123d,
            #180b25
        );
}

.dining-card-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    margin-bottom: 2.5rem;
}

.dining-card-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--secondary-color),
            var(--main-color)
        );

    border-radius: 1.2rem;

    font-size: 2.1rem;
}

.dining-card-top > span {
    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.dining-card h3 {
    margin-bottom: 1.5rem;

    color: #fff;

    font-size: 3rem;
    font-weight: 600;
}

.dining-card > p {
    margin-bottom: 1.4rem;

    color: rgba(255, 255, 255, 0.6);

    font-size: 1.5rem;
    line-height: 1.8;
}


/* Bar Detail List */

.dining-detail-list {
    display: grid;
    gap: 1rem;

    margin-top: 2.5rem;
}

.dining-detail-item {
    display: grid;
    grid-template-columns: 4.8rem 1fr;

    gap: 1.4rem;
    padding: 1.6rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.dining-detail-item > i {
    width: 4.8rem;
    height: 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 0.9rem;

    font-size: 1.7rem;
}

.dining-detail-item span {
    display: block;

    margin-bottom: 0.3rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;
    text-transform: uppercase;
}

.dining-detail-item h4 {
    margin-bottom: 0.4rem;

    color: #fff;

    font-size: 1.5rem;
}

.dining-detail-item p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1.25rem;
    line-height: 1.55;
}


/* Note */

.dining-card-note {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 1.3rem;

    margin-top: 2rem;
    padding: 1.6rem;

    background: rgba(255, 255, 255, 0.035);

    border-left: 2px solid var(--main-color);
    border-radius: 0.8rem;
}

.dining-card-note i {
    color: var(--main-color);
    font-size: 1.5rem;
}

.dining-card-note p {
    color: rgba(255, 255, 255, 0.51);

    font-size: 1.25rem;
    line-height: 1.6;
}


/* Restaurant Facts */

.restaurant-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1rem;
    margin-top: 2.5rem;
}

.restaurant-fact {
    padding: 1.7rem;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.restaurant-fact span {
    display: block;

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;
    text-transform: uppercase;
}

.restaurant-fact strong {
    color: #fff;

    font-size: 1.45rem;
    font-weight: 500;
}


/* =========================================================
   Restaurant Concept
========================================================= */

.restaurant-concept {
    margin-top: 7rem;
}

.restaurant-concept-heading {
    max-width: 80rem;
    margin-bottom: 3rem;
}

.restaurant-concept-heading span {
    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.restaurant-concept-heading h3 {
    margin: 0.7rem 0 1.2rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.restaurant-concept-heading p {
    color: rgba(255, 255, 255, 0.56);

    font-size: 1.45rem;
    line-height: 1.75;
}

.restaurant-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}

.restaurant-concept-item {
    padding: 2.5rem;

    background:
        linear-gradient(
            145deg,
            rgba(69, 29, 98, 0.34),
            rgba(28, 12, 43, 0.62)
        );

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.3rem;
}

.restaurant-concept-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2rem;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 1rem;

    font-size: 1.8rem;
}

.restaurant-concept-item > span {
    display: block;

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;
    text-transform: uppercase;
}

.restaurant-concept-item h4 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 1.7rem;
    font-weight: 500;
}

.restaurant-concept-item p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   Independent Access
========================================================= */

.restaurant-access {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2rem;
    align-items: center;

    margin-top: 6rem;
    padding: 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241, 18, 162, 0.11),
            transparent 28rem
        ),
        #21102f;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.restaurant-access-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(241, 18, 162, 0.09);

    border-radius: 50%;

    font-size: 2.1rem;
}

.restaurant-access span {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.restaurant-access h3 {
    margin-bottom: 0.7rem;

    color: #fff;

    font-size: 2.1rem;
    font-weight: 500;
}

.restaurant-access p {
    max-width: 95rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Practical Information
========================================================= */

.restaurant-practical {
    margin-top: 2rem;
    padding: 4rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
}

.restaurant-practical-heading {
    margin-bottom: 2.8rem;
}

.restaurant-practical-heading span {
    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.restaurant-practical-heading h3 {
    margin-top: 0.6rem;

    color: #fff;

    font-size: 2.8rem;
}

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

    gap: 1.5rem;
}

.restaurant-practical-item {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 1.3rem;

    padding: 2rem;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.restaurant-practical-item > i {
    color: var(--main-color);

    font-size: 1.8rem;
}

.restaurant-practical-item span {
    display: block;

    margin-bottom: 0.4rem;

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.95rem;
    text-transform: uppercase;
}

.restaurant-practical-item h4 {
    margin-bottom: 0.5rem;

    color: #fff;

    font-size: 1.45rem;
}

.restaurant-practical-item p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1.2rem;
    line-height: 1.55;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

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


@media (max-width: 850px) {

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

    .restaurant-concept-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .dining-section {
        padding: 7rem 5%;
    }

    .dining-heading h2 {
        font-size: 3.4rem;
    }

    .dining-card {
        padding: 3rem 2rem;
    }

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

    .restaurant-access {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }

    .restaurant-practical {
        padding: 3rem 2rem;
    }

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

    .dining-detail-item,
    .restaurant-practical-item {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   Location & Getting There
========================================================= */

.location-section {
    padding: 10rem 5%;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(241, 18, 162, 0.09),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(96, 39, 145, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #201030 50%,
            #12081d 100%
        );
}

.location-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* Heading */

.location-heading {
    max-width: 94rem;
    margin-bottom: 6rem;
}

.location-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.location-heading h2 {
    margin-bottom: 2.1rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.location-heading p {
    max-width: 90rem;
    margin-bottom: 1.4rem;

    color: rgba(255,255,255,.62);

    font-size: 1.6rem;
    line-height: 1.82;
}

.location-heading .location-lead {
    color: rgba(255,255,255,.87);
    font-size: 1.75rem;
}


/* =========================================================
   Facts
========================================================= */

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

    gap: 1.5rem;
    margin-bottom: 7rem;
}

.location-fact {
    padding: 2.7rem 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(82,34,116,.42),
            rgba(31,13,48,.72)
        );

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.location-fact-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2.2rem;

    color: var(--main-color);
    background: rgba(241,18,162,.09);

    border-radius: 1rem;

    font-size: 1.9rem;
}

.location-fact > span {
    display: block;

    margin-bottom: .6rem;

    color: rgba(255,255,255,.4);

    font-size: 1.05rem;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.location-fact h3 {
    margin-bottom: .8rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 600;
}

.location-fact p {
    color: rgba(255,255,255,.52);

    font-size: 1.3rem;
    line-height: 1.6;
}


/* =========================================================
   Arrival Options
========================================================= */

.arrival-options {
    padding: 4.5rem;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241,18,162,.1),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #2a123d,
            #180b25
        );

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2rem;
}

.arrival-options-heading {
    max-width: 80rem;
    margin-bottom: 3.5rem;
}

.arrival-options-heading span,
.driving-route-heading span {
    color: var(--main-color);

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.arrival-options-heading h3,
.driving-route-heading h3 {
    margin: .7rem 0 1.2rem;

    color: #fff;

    font-size: 3.2rem;
    font-weight: 600;
}

.arrival-options-heading p {
    color: rgba(255,255,255,.56);

    font-size: 1.45rem;
    line-height: 1.75;
}

.arrival-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;
}

.arrival-card {
    padding: 2.8rem;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.4rem;
}

.arrival-card-top {
    display: flex;
    align-items: center;
    gap: 1.4rem;

    margin-bottom: 2rem;
}

.arrival-card-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241,18,162,.09);

    border-radius: 1rem;

    font-size: 1.8rem;
}

.arrival-card-top span {
    color: var(--main-color);

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.arrival-card h4 {
    margin-bottom: 1rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.arrival-card > p {
    min-height: 10rem;

    color: rgba(255,255,255,.53);

    font-size: 1.35rem;
    line-height: 1.7;
}

.arrival-card-detail {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    margin-top: 2rem;
    padding-top: 1.5rem;

    border-top: 1px solid rgba(255,255,255,.08);
}

.arrival-card-detail span {
    color: rgba(255,255,255,.4);

    font-size: 1.1rem;
}

.arrival-card-detail strong {
    color: #fff;

    font-size: 1.2rem;
    font-weight: 500;
}


/* =========================================================
   Driving Route
========================================================= */

.driving-route {
    margin-top: 6rem;
}

.driving-route-heading {
    margin-bottom: 3rem;
}

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

    gap: 1.5rem;
}

.driving-route-item {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 1.4rem;

    padding: 2.3rem;

    background:
        linear-gradient(
            145deg,
            rgba(69,29,98,.34),
            rgba(28,12,43,.62)
        );

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.2rem;
}

.driving-route-item > span {
    color: rgba(241,18,162,.55);

    font-size: 1.8rem;
    font-weight: 600;
}

.driving-route-item h4 {
    margin-bottom: .6rem;

    color: #fff;

    font-size: 1.5rem;
    font-weight: 500;
}

.driving-route-item p {
    color: rgba(255,255,255,.5);

    font-size: 1.25rem;
    line-height: 1.6;
}


/* =========================================================
   Context
========================================================= */

.location-context {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 2rem;
    align-items: center;

    margin-top: 2rem;
    padding: 3.2rem 3.5rem;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(241,18,162,.11),
            transparent 26rem
        ),
        #21102f;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.location-context-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241,18,162,.09);

    border-radius: 50%;

    font-size: 2rem;
}

.location-context span {
    display: block;

    margin-bottom: .4rem;

    color: var(--main-color);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.location-context h3 {
    margin-bottom: .7rem;

    color: #fff;

    font-size: 2rem;
    font-weight: 500;
}

.location-context p {
    max-width: 95rem;

    color: rgba(255,255,255,.55);

    font-size: 1.35rem;
    line-height: 1.65;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {

    .location-facts,
    .driving-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .arrival-grid {
        grid-template-columns: 1fr;
    }

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


@media (max-width: 600px) {

    .location-section {
        padding: 7rem 5%;
    }

    .location-heading h2 {
        font-size: 3.4rem;
    }

    .location-facts,
    .driving-route-grid {
        grid-template-columns: 1fr;
    }

    .arrival-options {
        padding: 3rem 2rem;
    }

    .driving-route-item {
        grid-template-columns: 1fr;
    }

    .location-context {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }

    .arrival-card-detail {
        flex-direction: column;
    }
}
/* =========================================================
   Parking
========================================================= */

.parking-section {
    padding: 10rem 5%;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(241, 18, 162, 0.09),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(96, 39, 145, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #1f0f30 50%,
            #12081d 100%
        );
}

.parking-shell {
    max-width: 1400px;
    margin: 0 auto;
}


/* Heading */

.parking-heading {
    max-width: 92rem;
    margin-bottom: 6rem;
}

.parking-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.parking-heading h2 {
    margin-bottom: 2.1rem;
    color: #fff;
    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.parking-heading p {
    max-width: 88rem;
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,.62);
    font-size: 1.6rem;
    line-height: 1.82;
}

.parking-heading .parking-lead {
    color: rgba(255,255,255,.87);
    font-size: 1.75rem;
}


/* Facts */

.parking-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 7rem;
}

.parking-fact {
    padding: 2.7rem 2.3rem;
    background:
        linear-gradient(
            145deg,
            rgba(82,34,116,.42),
            rgba(31,13,48,.72)
        );
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.parking-fact-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    font-size: 1.9rem;
}

.parking-fact > span {
    display: block;
    margin-bottom: .6rem;
    color: rgba(255,255,255,.4);
    font-size: 1.05rem;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.parking-fact h3 {
    margin-bottom: .8rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.parking-fact p {
    color: rgba(255,255,255,.52);
    font-size: 1.3rem;
    line-height: 1.6;
}


/* Route */

.parking-route {
    padding: 4.5rem;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241,18,162,.1),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #2a123d,
            #180b25
        );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2rem;
}

.parking-route-heading {
    max-width: 78rem;
    margin-bottom: 3.5rem;
}

.parking-route-heading span,
.parking-shared-heading span {
    color: var(--main-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.parking-route-heading h3,
.parking-shared-heading h3 {
    margin: .7rem 0 1.2rem;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
}

.parking-route-heading p {
    color: rgba(255,255,255,.56);
    font-size: 1.45rem;
    line-height: 1.75;
}

.parking-route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.parking-route-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    padding: 2.3rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.2rem;
}

.parking-route-item > span {
    color: rgba(241,18,162,.55);
    font-size: 1.8rem;
    font-weight: 600;
}

.parking-route-item h4 {
    margin-bottom: .6rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.parking-route-item p {
    color: rgba(255,255,255,.5);
    font-size: 1.25rem;
    line-height: 1.6;
}


/* Parking Note */

.parking-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding: 3rem 3.5rem;
    background: #21102f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
}

.parking-note-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 50%;
    font-size: 2rem;
}

.parking-note span {
    display: block;
    margin-bottom: .4rem;
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.parking-note h3 {
    margin-bottom: .7rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
}

.parking-note p {
    max-width: 95rem;
    color: rgba(255,255,255,.55);
    font-size: 1.35rem;
    line-height: 1.65;
}


/* Shared Parking */

.parking-shared {
    margin-top: 6rem;
}

.parking-shared-heading {
    margin-bottom: 3rem;
}

.parking-shared-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.parking-shared-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 2.5rem;
    background:
        linear-gradient(
            145deg,
            rgba(69,29,98,.34),
            rgba(28,12,43,.62)
        );
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 1.3rem;
}

.parking-shared-item > i {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(241,18,162,.09);
    border-radius: 1rem;
    font-size: 1.8rem;
}

.parking-shared-item h4 {
    margin-bottom: .6rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}

.parking-shared-item p {
    color: rgba(255,255,255,.5);
    font-size: 1.3rem;
    line-height: 1.65;
}


/* Responsive */

@media (max-width: 1100px) {

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

@media (max-width: 750px) {

    .parking-shared-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .parking-section {
        padding: 7rem 5%;
    }

    .parking-heading h2 {
        font-size: 3.4rem;
    }

    .parking-facts,
    .parking-route-grid {
        grid-template-columns: 1fr;
    }

    .parking-route {
        padding: 3rem 2rem;
    }

    .parking-route-item,
    .parking-shared-item {
        grid-template-columns: 1fr;
    }

    .parking-note {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
    }
}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 10rem 5%;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(241, 18, 162, 0.09),
            transparent 38rem
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(96, 39, 145, 0.18),
            transparent 42rem
        ),
        linear-gradient(
            135deg,
            #13091f 0%,
            #1f0f30 50%,
            #12081d 100%
        );
}

.faq-shell {
    max-width: 1200px;
    margin: 0 auto;
}


/* Heading */

.faq-heading {
    max-width: 82rem;
    margin-bottom: 5rem;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.6rem;

    color: var(--main-color);

    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.faq-heading h2 {
    margin-bottom: 1.8rem;

    color: #fff;

    font-size: clamp(3.8rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.faq-heading p {
    color: rgba(255,255,255,.62);

    font-size: 1.6rem;
    line-height: 1.8;
}


/* FAQ Grid */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;

    gap: 1.4rem;
}


/* Item */

.faq-item {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(71, 30, 101, 0.42),
            rgba(27, 12, 42, 0.72)
        );

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.3rem;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.faq-item:hover {
    border-color: rgba(241,18,162,.22);
}

.faq-item.active {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241,18,162,.08),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            rgba(76, 31, 108, 0.5),
            rgba(29, 12, 44, 0.78)
        );

    border-color: rgba(241,18,162,.22);
}


/* Question */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding: 2.2rem 2.4rem;

    color: #fff;
    background: transparent;

    border: 0;

    cursor: pointer;

    text-align: left;
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.45;
}

.faq-question i {
    flex: 0 0 auto;

    width: 3.5rem;
    height: 3.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);
    background: rgba(241,18,162,.08);

    border-radius: 50%;

    font-size: 1.2rem;

    transition: transform .3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 30rem;
}

.faq-answer-inner {
    padding: 0 2.4rem 2.3rem;
}

.faq-answer p {
    padding-top: 1.7rem;

    color: rgba(255,255,255,.56);

    border-top: 1px solid rgba(255,255,255,.07);

    font-size: 1.32rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--main-color);

    text-decoration: none;

    transition: opacity .2s ease;
}

.faq-answer a:hover {
    opacity: .75;
}


/* Responsive */

@media (max-width: 800px) {

    .faq-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .faq-section {
        padding: 7rem 5%;
    }

    .faq-heading h2 {
        font-size: 3.4rem;
    }

    .faq-question {
        padding: 2rem 1.8rem;
    }

    .faq-answer-inner {
        padding: 0 1.8rem 2rem;
    }
}


/* =========================================================
   Casino Duisburg Legal Pages & Updated Footer
========================================================= */
body.legal-page {
    background: #13091f;
    color: rgba(255,255,255,.72);
}

.legal-page .header .header-2 {
    background: rgba(10, 4, 16, .96);
    border-bottom: 1px solid rgba(241,18,162,.18);
    box-shadow: 0 .6rem 2.5rem rgba(0,0,0,.22);
}

.legal-hero {
    padding: 17rem 5% 7rem;
    background:
      radial-gradient(circle at 90% 10%, rgba(241,18,162,.13), transparent 38rem),
      radial-gradient(circle at 5% 85%, rgba(79,23,135,.25), transparent 42rem),
      linear-gradient(135deg, #13091f 0%, #211031 52%, #12081d 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.legal-hero-inner,
.legal-content-shell { max-width: 1180px; margin: 0 auto; }
.legal-kicker {
    display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem;
    color: var(--main-color); font-size: 1.3rem; font-weight: 600;
    letter-spacing: .13rem; text-transform: uppercase;
}
.legal-hero h1 {
    max-width: 900px; color: #fff; font-size: clamp(4rem, 6vw, 6.4rem);
    font-weight: 600; line-height: 1.05; margin-bottom: 2rem;
}
.legal-hero p {
    max-width: 880px; color: rgba(255,255,255,.66); font-size: 1.65rem; line-height: 1.8;
}
.legal-updated {
    display: inline-flex; margin-top: 2.5rem; padding: 1rem 1.4rem;
    border: 1px solid rgba(255,255,255,.08); border-radius: .8rem;
    background: rgba(255,255,255,.04); color: rgba(255,255,255,.55); font-size: 1.25rem;
}
.legal-content {
    padding: 7rem 5% 10rem;
    background:
      radial-gradient(circle at 0% 40%, rgba(92,40,140,.13), transparent 38rem),
      linear-gradient(135deg, #12081d 0%, #1b0c2a 50%, #13091f 100%);
}
.legal-summary {
    margin-bottom: 4rem; padding: 3rem;
    background: linear-gradient(145deg, rgba(83,34,117,.38), rgba(30,13,47,.7));
    border: 1px solid rgba(255,255,255,.07); border-radius: 1.6rem;
}
.legal-summary h2 { color:#fff; font-size:2.5rem; margin-bottom:1rem; }
.legal-summary p { color:rgba(255,255,255,.6); font-size:1.45rem; line-height:1.75; }
.legal-section {
    margin-bottom: 2rem; padding: 3.2rem;
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.065);
    border-radius: 1.5rem;
}
.legal-section h2 { color:#fff; font-size:2.6rem; line-height:1.25; margin-bottom:1.3rem; }
.legal-section h3 { color:#fff; font-size:1.85rem; line-height:1.35; margin:2rem 0 .8rem; }
.legal-section p, .legal-section li {
    color:rgba(255,255,255,.6); font-size:1.42rem; line-height:1.78;
}
.legal-section p + p { margin-top: 1.2rem; }
.legal-section ul, .legal-section ol { margin: 1.2rem 0 0 2.2rem; }
.legal-section li { margin-bottom: .8rem; }
.legal-section a { color:var(--main-color); text-decoration:underline; text-underline-offset:.25rem; }
.legal-note {
    margin-top:1.8rem; padding:1.7rem 1.9rem;
    background:rgba(241,18,162,.06); border-left:3px solid var(--main-color); border-radius:.8rem;
}
.legal-note p { margin:0; }
.legal-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:1.5rem; }
.legal-card {
    padding:2rem; background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.055); border-radius:1rem;
}
.legal-card h3 { margin:0 0 .7rem; font-size:1.65rem; }
.legal-toc {
    display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem; margin-top:1.5rem;
}
.legal-toc a {
    display:block; padding:1rem 1.2rem; color:rgba(255,255,255,.72);
    background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.05); border-radius:.7rem;
}
.legal-toc a:hover { color:var(--main-color); border-color:rgba(241,18,162,.22); }

.site-footer .footer-main-links { margin-top: 2rem; }
.site-footer .footer-legal-links { margin-top: 1.4rem; border-top-color: rgba(255,255,255,.28); }
.site-footer .footer-item > p { max-width: 760px; margin-left:auto; margin-right:auto; }

@media (max-width: 800px) {
  .legal-grid, .legal-toc { grid-template-columns:1fr; }
  .legal-section { padding:2.5rem 2rem; }
}
@media (max-width: 600px) {
  .legal-hero { padding:14rem 5% 6rem; }
  .legal-content { padding:5rem 5% 7rem; }
  .legal-hero h1 { font-size:3.7rem; }
  .legal-summary { padding:2.3rem 1.8rem; }
}
