*, *::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lohit Devanagari', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Charm', cursive;
    font-weight: 700;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.hidden {
    display: none !important;
}

.lb_container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.lb_button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Lohit Devanagari', sans-serif;
}

.lb_button i {
    margin-right: 8px;
}

.lb_section {
    padding: 80px 0;
    position: relative;
}

.lb_section_title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.lb_section_title i {
    margin-right: 10px;
    color: #e67e22;
}

.lb_section_subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.lb_mainHeader_wrapper {
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.lb_headerContent_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.lb_brandIdentity_panel {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.lb_brandLogo_image {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.lb_brandName_title {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    background: linear-gradient(to right, #f1c40f, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lb_primaryNavigation_holder {
    display: flex;
}

.lb_navMenu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.lb_navItem_element a {
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lb_navItem_element a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lb_navItem_element i {
    margin-right: 8px;
}

.lb_mobileMenu_toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.lb_mobileNavigation_drawer {
    position: fixed;
    top: 97px;
    left: 0;
    width: 100%;
    background: #2c3e50;
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.lb_mobileNavigation_drawer.active {
    transform: translateY(0);
}

.lb_mobileNav_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lb_mobileNav_item a {
    color: white;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lb_mobileNav_item a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lb_mobileNav_item i {
    margin-right: 10px;
}

.lb_heroSection_wrapper {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.lb_heroBackground_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../lb-image/lb-bg-img-1.jpg') center/cover no-repeat;
    z-index: -1;
}

.lb_heroContent_container {
    max-width: 600px;
    color: white;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 15px;
}

.lb_heroTitle_heading {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.lb_heroDescription_text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.lb_heroAction_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lb_heroPrimary_button {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.lb_heroPrimary_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lb_heroSecondary_button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.lb_heroSecondary_button:hover {
    background: white;
    color: #2c3e50;
}

.lb_gameShowcase_section {
    background: linear-gradient(180deg, #f5f7fa 0%, #e4e8ed 100%);
    position: relative;
    overflow: hidden;
}

.lb_gameSection_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../lb-image/lb-bg-img-2.jpg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.lb_gameSection_container {
    position: relative;
    z-index: 1;
}

.lb_gameCards_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.lb_gameCard_item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(25% - 30px);
    padding: 15px;
    position: relative;
}

.lb_gameCard_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.lb_gameCard_imageContainer {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.lb_gameCard_visual {
    transition: transform 0.5s ease;
}

.lb_gameCard_item:hover .lb_gameCard_visual {
    transform: scale(1.05);
}

.lb_gameCard_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lb_gameCard_content {
    padding: 20px;
}

.lb_gameCard_name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.lb_gameCard_description {
    width: 100%;
    min-height: 75px;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.lb_gameCard_button {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.lb_gameCard_button:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.lb_gameSection_footer {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    color: #7f8c8d;
}

.lb_gameSection_footer i {
    color: #e67e22;
}

.lb_benefitsSection_wrapper {
    position: relative;
    color: white;
}

.lb_benefitsBackground_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../lb-image/lb-bg-img-3.jpg') center/cover no-repeat;
    z-index: -2;
}

.lb_benefitsOverlay_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
    z-index: -1;
}

.lb_benefitsContent_container {
    position: relative;
    z-index: 1;
}

.lb_benefitsTitle_heading {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.lb_benefitsGrid_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.lb_benefitCard_item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: calc(33.333% - 30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.lb_benefitCard_item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.lb_benefitCard_icon {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

.lb_benefitCard_title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.lb_benefitCard_text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lb_spotlightSection_wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.lb_spotlightContainer_box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.lb_spotlightSection_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.lb_spotlightSection_title i {
    color: #f1c40f;
    margin-right: 15px;
}

.lb_spotlightGames_container {
    position: relative;
    min-height: 400px;
}

.lb_spotlightGame_card {
    display: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.lb_spotlightGame_card.active {
    display: flex;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lb_spotlightVisual_column {
    width: 50%;
    position: relative;
}

.lb_spotlightGame_image {
    min-height: 400px;
}

.lb_spotlightBadge_tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.lb_spotlightBadge_tag i {
    margin-right: 5px;
}

.lb_spotlightInfo_column {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.lb_spotlightGame_title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.lb_spotlightGame_title i {
    color: #3498db;
    margin-right: 10px;
}

.lb_spotlightGame_description {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.lb_spotlightFeatures_list {
    margin-bottom: 30px;
}

.lb_spotlightFeature_item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.lb_spotlightFeature_item i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 1.2rem;
}

.lb_spotlightPlay_button {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.lb_spotlightPlay_button:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.lb_spotlightPlay_button i {
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .lb_spotlightGame_card {
        flex-direction: column;
    }
    
    .lb_spotlightVisual_column,
    .lb_spotlightInfo_column {
        width: 100%;
    }
    
    .lb_spotlightGame_image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .lb_spotlightSection_title {
        font-size: 2rem;
    }
    
    .lb_spotlightInfo_column {
        padding: 30px;
    }
    
    .lb_spotlightGame_title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .lb_spotlightSection_title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .lb_spotlightInfo_column {
        padding: 25px 20px;
    }
    
    .lb_spotlightGame_title {
        font-size: 1.4rem;
    }
    
    .lb_spotlightGame_description {
        font-size: 1rem;
    }
    
    .lb_spotlightFeature_item {
        font-size: 0.95rem;
    }
    
    .lb_spotlightPlay_button {
        width: 100%;
        text-align: center;
    }
}

.lb_communitySection_wrapper {
    position: relative;
    color: white;
}

.lb_communityBackground_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../lb-image/lb-bg-img-4.jpg') center/cover no-repeat;
    z-index: -2;
}

.lb_communityContent_container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lb_communityTitle_heading {
    color: white;
    margin-bottom: 20px;
}

.lb_communityIntro_text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.lb_communityStats_wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.lb_communityStat_item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.lb_communityStat_item:hover {
    transform: translateY(-10px);
}

.lb_communityStat_item i {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 15px;
}

.lb_communityStat_number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-family: 'Charm', cursive;
}

.lb_communityStat_label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.lb_communityFeatures_wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.lb_communityFeature_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    width: calc(33.333% - 30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.lb_communityFeature_card:hover {
    transform: translateY(-10px);
}

.lb_communityFeature_card i {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

.lb_communityFeature_title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.lb_communityFeature_text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lb_testimonialSection_wrapper {
    background: #f8f9fa;
}

.lb_testimonialContainer_box {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.lb_testimonialTitle_heading {
    text-align: center;
    margin-bottom: 10px;
}

.lb_testimonialSubtitle_text {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.lb_testimonialSlider_track {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #f1c40f #f8f9fa;
    cursor: grab;
}

.lb_testimonialSlider_track:active {
    cursor: grabbing;
}

.lb_testimonialSlider_track::-webkit-scrollbar {
    height: 8px;
}

.lb_testimonialSlider_track::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
    margin: 0 50px;
}

.lb_testimonialSlider_track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #f1c40f, #e67e22);
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}

.lb_testimonialSlider_track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #e67e22, #f1c40f);
}

.lb_testimonialSlide_item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lb_testimonialSlider_track:active .lb_testimonialSlide_item {
    transform: scale(0.98);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lb_testimonialSlide_item {
    min-width: 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lb_testimonialUser_image {
    width: 70%;
    height: 200px;
    object-fit: cover;
}

.lb_testimonialContent_box {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lb_testimonialUser_name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.lb_testimonialRating_stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.lb_testimonialQuote_text {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.lb_newsletterSection_wrapper {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.lb_newsletterContainer_box {
    display: flex;
    gap: 50px;
    align-items: center;
}

.lb_newsletterContent_column {
    width: 50%;
}

.lb_newsletterTitle_heading {
    color: white;
    margin-bottom: 20px;
    text-align: left;
}

.lb_newsletterDescription_text {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.lb_newsletterBenefits_list {
    margin-bottom: 30px;
}

.lb_newsletterBenefit_item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.lb_newsletterBenefit_item i {
    color: #f1c40f;
    margin-right: 10px;
    font-size: 1.2rem;
}

.lb_newsletterForm_column {
    width: 50%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.lb_newsletterField_group {
    margin-bottom: 20px;
}

.lb_newsletterField_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.lb_newsletterField_input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lohit Devanagari', sans-serif;
    transition: border-color 0.3s ease;
}

.lb_newsletterField_input:focus {
    border-color: #3498db;
    outline: none;
}

.lb_newsletterField_error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.lb_newsletterAgreement_group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.lb_newsletterAgreement_group input {
    margin-right: 10px;
}

.lb_newsletterAgreement_group label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.lb_newsletterAgreement_group a {
    color: #3498db;
}

.lb_newsletterSubmit_button {
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: white;
    width: 100%;
    padding: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.lb_newsletterSubmit_button:hover {
    background: linear-gradient(45deg, #d35400, #e67e22);
}

.lb_newsletterSuccess_message {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    color: #2c3e50;
}

.lb_newsletterSuccess_message i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

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

.lb_faqSection_wrapper {
    position: relative;
}

.lb_faqBackground_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../lb-image/lb-bg-img-1.jpg') center/cover no-repeat;
    z-index: -2;
    opacity: 0.1;
}

.lb_faqContainer_box {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.lb_faqTitle_heading {
    text-align: center;
    margin-bottom: 10px;
}

.lb_faqSubtitle_text {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.lb_faqAccordion_list {
    max-width: 800px;
    margin: 0 auto;
}

.lb_faqItem_element {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.lb_faqQuestion_button {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #f8f9fa;
    border: none;
    font-family: 'Charm', cursive;
    font-size: 1.2rem;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.lb_faqQuestion_button:hover {
    background: #e8f4fc;
}

.lb_faqQuestion_button i:first-child {
    margin-right: 15px;
    color: #e67e22;
}

.lb_faqToggle_icon {
    transition: transform 0.3s ease;
}

.lb_faqItem_element.active .lb_faqToggle_icon {
    transform: rotate(45deg);
}

.lb_faqAnswer_content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lb_faqItem_element.active .lb_faqAnswer_content {
    padding: 20px;
    max-height: 500px;
}

.lb_faqAnswer_content p {
    margin-bottom: 15px;
}

.lb_faqAnswer_content a {
    color: #3498db;
}

.lb_faqContact_prompt {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
}

.lb_faqContact_prompt a {
    color: #e67e22;
    font-weight: 600;
}

.lb_noticeSection_wrapper {
    background: #f8f9fa;
}

.lb_noticeContainer_box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.lb_noticeItem_card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: calc(33.333% - 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.lb_noticeItem_card:hover {
    transform: translateY(-10px);
}

.lb_noticeItem_icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.lb_noticeItem_title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.lb_noticeItem_text {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.lb_noticeItem_text a {
    color: #3498db;
}

.lb_mainFooter_wrapper {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 0;
}

.lb_footerContent_container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.lb_footerSection_column {
    width: calc(25% - 40px);
}

.lb_footerSection_title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.lb_footerSection_title i {
    margin-right: 10px;
    color: #f1c40f;
}

.lb_footerSection_text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.lb_footerSocial_links {
    display: flex;
    gap: 15px;
}

.lb_footerSocial_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lb_footerSocial_link:hover {
    background: #f1c40f;
    color: #2c3e50;
    transform: translateY(-3px);
}

.lb_footerSection_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb_footerSection_item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.lb_footerSection_item a:hover {
    color: #f1c40f;
}

.lb_footerSection_item i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.lb_footerSection_address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.lb_footerSection_address p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.lb_footerSection_address i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #f1c40f;
}

.lb_footerContact_button {
    display: inline-block;
    background: #f1c40f;
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.lb_footerContact_button:hover {
    background: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lb_footerCopyright_bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.lb_contactModal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lb_contactModal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.lb_contactModal_container {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.lb_contactModal_overlay.active .lb_contactModal_container {
    transform: translateY(0);
}

.lb_contactModal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lb_contactModal_close:hover {
    color: #e74c3c;
}

.lb_contactModal_title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: center;
}

.lb_contactModal_title i {
    color: #3498db;
    margin-right: 10px;
}

.lb_contactModal_text {
    text-align: center;
    margin-bottom: 30px;
    color: #7f8c8d;
}

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

.lb_contactModal_group {
    margin-bottom: 15px;
}

.lb_contactModal_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.lb_contactModal_input,
.lb_contactModal_select,
.lb_contactModal_textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lohit Devanagari', sans-serif;
    transition: border-color 0.3s ease;
}

.lb_contactModal_textarea {
    min-height: 120px;
    resize: vertical;
}

.lb_contactModal_input:focus,
.lb_contactModal_select:focus,
.lb_contactModal_textarea:focus {
    border-color: #3498db;
    outline: none;
}

.lb_contactModal_error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.lb_contactModal_terms {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.lb_contactModal_terms input {
    margin-right: 10px;
}

.lb_contactModal_terms label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.lb_contactModal_terms a {
    color: #3498db;
}

.lb_contactModal_submit {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lb_contactModal_submit:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.lb_contactModal_success {
    text-align: center;
    padding: 30px;
}

.lb_contactModal_success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.lb_contactModal_success h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.lb_contactModal_success p {
    color: #7f8c8d;
}

.lb_scrollTop_button {
    position: fixed;
    bottom: 230px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: white;
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

.lb_scrollTop_button.active {
    opacity: 1;
    visibility: visible;
}

.lb_scrollTop_button:hover {
    background: linear-gradient(45deg, #d35400, #e67e22);
    transform: translateY(-5px);
}

.lb_ageConfirmation_layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.lb_ageVerification_box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lb_ageCheck_title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.lb_ageCheck_title i {
    color: #e74c3c;
    margin-right: 10px;
}

.lb_ageCheck_content {
    margin-bottom: 30px;
    color: #7f8c8d;
    font-size: 1.05rem;
}

.lb_ageCheck_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lb_ageConfirm_yes {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb_ageConfirm_yes:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.lb_ageConfirm_no {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb_ageConfirm_no:hover {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.lb_cookieNotice_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c3e50;
    color: white;
    padding: 15px 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lb_cookieNotice_banner.active {
    transform: translateY(0);
}

.lb_cookieAlert_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.lb_cookieAlert_icon {
    font-size: 1.8rem;
    color: #f1c40f;
}

.lb_cookieAlert_message {
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lb_cookieAlert_link {
    color: #f1c40f;
    font-weight: 600;
}

.lb_cookieAccept_button {
    background: #f1c40f;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb_cookieAccept_button:hover {
    background: #f39c12;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .lb_gameCard_item {
        width: calc(33.333% - 30px);
    }
    
    .lb_benefitCard_item {
        width: calc(50% - 30px);
    }
    
    .lb_communityFeature_card {
        width: calc(50% - 30px);
    }
    
    .lb_newsletterContainer_box {
        flex-direction: column;
    }
    
    .lb_newsletterContent_column,
    .lb_newsletterForm_column {
        width: 100%;
    }
    
    .lb_footerSection_column {
        width: calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .lb_primaryNavigation_holder {
        display: none;
    }
    
    .lb_mobileMenu_toggle {
        display: block;
    }
    
    .lb_gameCard_item {
        width: calc(50% - 30px);
    }
    
    .lb_benefitCard_item {
        width: 100%;
    }
    
    .lb_communityFeature_card {
        width: 100%;
    }
    
    .lb_noticeItem_card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .lb_section {
        padding: 60px 0;
    }

    .lb_brandIdentity_panel {
        flex-direction: column;
    }

    .lb_brandLogo_image {
        display: none;
    }
    
    .lb_section_title {
        font-size: 2rem;
    }
    
    .lb_gameCard_item {
        width: 100%;
    }

    .lb_testimonialContainer_box,
    .lb_faqContainer_box {
        padding: 50px 5px;
    }

    .lb_testimonialSlide_item {
        min-width: 260px;
    }
    
    .lb_noticeItem_card {
        width: 100%;
    }
    
    .lb_footerSection_column {
        width: 100%;
    }
    
    .lb_ageCheck_buttons {
        flex-direction: column;
    }
    
    .lb_ageConfirm_yes,
    .lb_ageConfirm_no {
        width: 100%;
    }
    
    .lb_cookieAlert_container {
        flex-direction: column;
        text-align: center;
    }
    
    .lb_cookieAlert_message {
        margin-bottom: 15px;
    }
}

@media (max-width: 320px) {
    .lb_heroTitle_heading {
        font-size: 2.2rem;
    }
    
    .lb_heroAction_buttons {
        flex-direction: column;
    }
    
    .lb_heroPrimary_button,
    .lb_heroSecondary_button {
        width: 100%;
    }

    .lb_contactModal_close {
        top: 0;
        right: 0;
    }

    .lb_scrollTop_button {
        bottom: 275px;
    }
}

.lbpage_privacypolicy_main {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.lbpage_privacypolicy_header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.lbpage_privacypolicy_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lbpage_privacypolicy_title {
    color: #f1c40f;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.lbpage_privacypolicy_title i {
    color: #f1c40f;
    margin-right: 15px;
}

.lbpage_privacypolicy_subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lbpage_privacypolicy_content {
    padding: 60px 0;
}

.lbpage_privacypolicy_listcontainer {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px;
}

.lbpage_privacypolicy_list {
    counter-reset: policy-counter;
    list-style: none;
}

.lbpage_privacypolicy_item {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #495057;
}

.lbpage_privacypolicy_item:before {
    counter-increment: policy-counter;
    content: counter(policy-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.lbpage_privacypolicy_item i {
    color: #e67e22;
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .lbpage_privacypolicy_title {
        font-size: 2rem;
    }
    
    .lbpage_privacypolicy_listcontainer {
        padding: 30px 20px;
    }
    
    .lbpage_privacypolicy_item {
        padding-left: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lbpage_privacypolicy_title {
        font-size: 1.8rem;
    }
    
    .lbpage_privacypolicy_header {
        padding: 40px 0 30px;
    }
    
    .lbpage_privacypolicy_content {
        padding: 40px 0;
    }
}

.lbpage_cookiepolicy_main {
    background: linear-gradient(180deg, #f1f8fe 0%, #e1ecf7 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.lbpage_cookiepolicy_header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.lbpage_cookiepolicy_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lbpage_cookiepolicy_title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.lbpage_cookiepolicy_title i {
    color: #f1c40f;
    margin-right: 15px;
}

.lbpage_cookiepolicy_subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lbpage_cookiepolicy_content {
    padding: 60px 0;
}

.lbpage_cookiepolicy_listcontainer {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px;
}

.lbpage_cookiepolicy_list {
    counter-reset: cookie-counter;
    list-style: none;
}

.lbpage_cookiepolicy_item {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #495057;
}

.lbpage_cookiepolicy_item:before {
    counter-increment: cookie-counter;
    content: counter(cookie-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #e67e22;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.lbpage_cookiepolicy_item i {
    color: #3498db;
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .lbpage_cookiepolicy_title {
        font-size: 2rem;
    }
    
    .lbpage_cookiepolicy_listcontainer {
        padding: 30px 20px;
    }
    
    .lbpage_cookiepolicy_item {
        padding-left: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lbpage_cookiepolicy_title {
        font-size: 1.8rem;
    }
    
    .lbpage_cookiepolicy_header {
        padding: 40px 0 30px;
    }
    
    .lbpage_cookiepolicy_content {
        padding: 40px 0;
    }
}

.lbpage_responsiblegaming_main {
    background: linear-gradient(180deg, #f9fbfd 0%, #e8f4fc 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.lbpage_responsiblegaming_header {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.lbpage_responsiblegaming_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lbpage_responsiblegaming_title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.lbpage_responsiblegaming_title i {
    color: #f1c40f;
    margin-right: 15px;
}

.lbpage_responsiblegaming_subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lbpage_responsiblegaming_content {
    padding: 60px 0;
}

.lbpage_responsiblegaming_listcontainer {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px;
}

.lbpage_responsiblegaming_list {
    counter-reset: responsible-counter;
    list-style: none;
}

.lbpage_responsiblegaming_item {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #495057;
}

.lbpage_responsiblegaming_item:before {
    counter-increment: responsible-counter;
    content: counter(responsible-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.lbpage_responsiblegaming_item i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.1rem;
}

.lbpage_responsiblegaming_item a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .lbpage_responsiblegaming_title {
        font-size: 2rem;
    }
    
    .lbpage_responsiblegaming_listcontainer {
        padding: 30px 20px;
    }
    
    .lbpage_responsiblegaming_item {
        padding-left: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lbpage_responsiblegaming_title {
        font-size: 1.8rem;
    }
    
    .lbpage_responsiblegaming_header {
        padding: 40px 0 30px;
    }
    
    .lbpage_responsiblegaming_content {
        padding: 40px 0;
    }
    
    .lbpage_responsiblegaming_item a {
        display: block;
        margin-top: 5px;
    }
}