body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.content {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Responsive max-widths */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 745px;
    }

    .game-menu {
        position: sticky;
        top: 58px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

header {
    background: #e00000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 125px;
    flex-wrap: wrap;
    position: sticky;
    /* Make header sticky */
    top: 0;
    /* Stick to the top of the page */
    z-index: 1000;
    /* Ensure it stays on top of other elements */
}

header .logo img {
    width: 120px;
}

nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.menu__nav-link svg {
    width: 24px;
    height: 24px;
    display: block;
    margin-top: -0.5rem;
}

.home-link {
    padding: 4px;
}

.header-buttons {
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-join {
    background: white;
    color: black;
    box-shadow: inset 0 -1.01rem .91rem #cfcfcf;
    padding: 8px;
}

.btn-login {
    color: white;
    background-color: #9dce78;
    box-shadow: inset 0 -1.41rem 1.28rem #357b00;
    padding: 8px;
}

.btn-login-out {
    color: white;
    background-color: #9dce78;
    box-shadow: inset 0 -1.41rem 1.28rem #357b00;
    padding: 8px;
}

.forgot-link {
    font-size: 12px;
    margin-left: 10px;
    color: white;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 15px 20px;
        background: #e00000;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
    }

    nav.active {
        display: grid;
    }

    nav a:first-child {
        grid-column: span 2;
    }

    .header-buttons {
        display: none;
        flex-direction: column;
        background: #e00000;
        width: 100%;
        padding: 10px 20px;
    }

    .header-buttons.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* Responsive banner container */
.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #4A12B3;
}

/* Slides container */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Each slide */
.slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Banner image responsiveness */
.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero section - flexible height */
.hero {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 28vw;
    /* Responsive height based on screen width */
    max-height: 420px;
    /* Cap at original banner height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    color: white;
    max-width: 1100px;
    margin: auto;
}

/* Navigation buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots for slider */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #e00000;
}

/* Hero background images */
.hero1 {
    background-image: url('/img/bg-1.png');
    margin-top: -1rem;
}

.hero2 {
    background-image: url('/img/bg-2.png');
    margin-top: -1rem;
}

.hero3 {
    background-image: url('/img/bg-3.png');
    margin-top: -1rem;
}

/* Different page background colors */
.page-home {
    background-color: #f5f5f5;
}

.page-about {
    background-color: #eaf7ff;
}

.page-contact {
    background-color: #fff3e0;
}


.cards {
    display: flex;
    gap: 10px;
    padding: 4px;
}

.card {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    min-width: 200px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 80%;
    border-radius: 4px;
}

.card h4 {
    margin: 8px 0 4px;
}

.play-btn {
    background: #9dce78;
    text-align: center;
    padding: 5px;
    box-shadow: inset 0 -21.12px 19.2px #357b00;
}

.play-btn button {
    font-size: 20px;
    background: #9dce78;
    border: none;
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: inset 0 -21.12px 19.2px #357b00;
}

.marquee-cards {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            align-items: center;
            padding: 10px;
        }

        .card {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: #f9f9f9;
            padding: 10px;
            border-radius: 6px;
            min-width: 280px;
            max-width: 300px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .card img {
            width: 80px;
            height: 40px;
            border-radius: 6px;
            object-fit: cover;
        }

        .card-content {
            display: flex;
            flex-direction: column;
            width: 30;
        }

        .card-content h4 {
            margin: 0 0 4px;
            font-size: 14px;
        }

        .card-content p {
            margin: 0;
            font-size: 5px;
            color: #444;
        }

.bingo-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #f9f9f9;
}

.bingo-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease-in-out;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.bingo-card {
    margin-bottom: 8px;
    min-width: 305px;
    max-width: 270px;
    height: 282px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/*.bingo-card {*/
/*    min-width: 283px;*/
/*    max-width: 270px;*/
/*    height: 245px;*/
/*    background: white;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);*/
/*    flex-shrink: 0;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: red;
    color: white;
    padding: 6px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 14px;
}

.price {
    background: white;
    color: black;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 12px;
}

.info {
    background: white;
    color: red;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
    cursor: pointer;
}

.bingo-card img {
    width: 100%;
    height: 135px;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 10px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.room-name {
    font-weight: bold;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}

.players {
    float: right;
    font-size: 12px;
    color: #666;
}

.room-info {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
}

.play-btn {
    background: #9dce78;
    color: white;
    padding: 13px;
    border: none;
    margin-top: 1.5rem;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: inset 0 -21.12px 19.2px #357b00;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
    color: black;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 10px;
}

.content {
    padding: 0 20px;
}

@media (min-width: 768px) {
    .content {
        /* padding: 0 100px; */
        padding: 0px !important;

        /* apply for medium and larger screens */
    }

    .last-main img {
        width: 100px;
    }


}
@media (width: 912px) {
    .game-menu {
        position: sticky;
        top: 0px !important;
    }
}

@media (width: 853px) {
    .game-menu {
        position: sticky;
        top: 0px !important;
    }
}

@media (width: 820px) {
    .content {
        /* padding: 0 100px; */
        padding: 0px !important;

        /* apply for medium and larger screens */
    }

    .last-main img {
        width: 100px;
    }

    .game-menu {
        position: sticky;
        top: 0px !important;
    }


}

@media (width: 912px) {
    .content {
        /* padding: 0 100px; */
        padding: 0px !important;

        /* apply for medium and larger screens */
    }

    .last-main img {
        width: 100px;
    }


}

/* Responsive */
@media (max-width: 768px) {
    .bingo-slider {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .last-main {
        margin-bottom: 75px !important;
    }

    .bingo-card {
        scroll-snap-align: start;
    }

    .slider-btn {
        display: none;
    }
        .game-type1 {
        width: 340px !important;
    }
}

@media (max-width: 820px) {
    .bingo-slider {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .last-main {
        margin-bottom: 75px !important;
    }

    .bingo-card {
        scroll-snap-align: start;
    }

    .slider-btn {
        display: none;
    }
    .game-type1 {
        width: 340px !important;
        gap: 10px !important;
        /* height: auto !important; */
    }
}

@media (max-width: 912px) {
    .bingo-slider {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .last-main {
        margin-bottom: 75px !important;
    }

    .bingo-card {
        scroll-snap-align: start;
    }

    .slider-btn {
        display: none;
    }
    .game-type1 {
        width: 340px !important;
        gap: 10px !important;
        /* height: auto !important; */
    }
}

 @media (max-width: 768px) {
            .marquee-cards {
                /*flex-wrap: wrap;*/
                justify-content: center;
            }

            .card {
                flex-direction: row;
                align-items: center;
                text-align: center;
                max-width: 90%;
                min-width: 181px;
            }

                .card img {
                    max-height: 50px;
                    /*width: 100%;*/
                    /*height: auto;*/
                }

            .card-content {
                align-items: center;
            }
        }

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 28px;
    }
}


@media (max-width: 820px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 912px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* game card css  */
/* game card css  */
.games-wrapper {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
    /* padding: 20px; */
}

/* Game Card with hover effect */
.game-type1 {
    position: relative;
    width: 285px;
    height: 254px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.game-type1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    z-index: 1;
}

.game-type1:hover {
    transform: scale(1.4);
    z-index: 5;
}

/* Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 178, 170, 0.75);
    /* Sea green overlay */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 20px;
    text-align: center;
    transition: opacity 0.4s ease;
}

.game-type1:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.card-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
}

.card-overlay button {
    background: #4caf50;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card-overlay button:hover {
    background: #388e3c;
}

@media (max-width: 768px) {
    .game-type1 {
        transform: scale(1.08);
        /* Smaller scale for mobile */
        width: 90%;
        height: auto;
    }

    .game-type1:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 820px) {
    .game-type1 {
        transform: scale(1.08);
        /* Smaller scale for mobile */
        width: 90%;
        height: auto;
    }

    .game-type1:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 912px) {
    .game-type1 {
        transform: scale(1.08);
        /* Smaller scale for mobile */
        width: 90%;
        height: auto;
    }

    .game-type1:hover {
        transform: scale(1.1);
    }
}


/* footer css */
/* footer start css */
footer {
    background-color: #e00000;
    color: white;
    text-align: center;
    padding: 50px 20px 20px;
}

.footer-top img {
    width: 58px;
    height: 45px;
    margin: 5px 5px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*padding-bottom: 30px;*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #B5040E;
    height: 80px;
    margin-top: 0px;
}

@media (max-width: 425px) {
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        background-color: #B5040E;
        height: 140px;
        margin-top: -40px
    }

    #warning {
        width: 180px !important;
    }

    .last-main{
        gap: 13px;
    }

    .last-main img {
         width: 100px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        height: 180px;
    }
}

@media (max-width: 820px) {
    .footer-top {
        height: 180px;
    }
}

@media (max-width: 912px) {
    .footer-top {
        height: 180px;
    }
}

.footer-main {
    max-width: 1200px;
    margin: 0px auto;
    font-size: 12.7px;
    line-height: 1.1;
}

.footer-main a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.footer-main a:hover {
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 200px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-awards {
    display: flex;
    justify-content: center;
    gap: 445px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.footer-awards img {
    height: 129px;
    width: 129px;
}

.footer-bottom {
    background: #b50000;
    padding: 20px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.footer-logos img {
    height: 40px;
}

.sub-footer {
    background: #c2a3d1;
    display: flex;
    justify-content: center;
    gap: 15rem;
    padding-top: 0.2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
}

.social-icon img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .footer-main {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-awards {
        flex-direction: row;
        gap: 20px;
    }

    .footer-logos img {
        height: 30px;
    }
}

@media (max-width: 820px) {
    .footer-main {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-awards {
        flex-direction: row;
        gap: 20px;
    }

    .footer-logos img {
        height: 30px;
    }
}

@media (max-width: 912px) {
    .footer-main {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-awards {
        flex-direction: row;
        gap: 20px;
    }

    .footer-logos img {
        height: 30px;
    }
}

.main-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #fff;
    border-top: 1px solid #ccc;
    gap: 2rem;
}

.footer-column {
    min-width: 180px;
    max-width: 220px;
}

.footer-column h4 {
    color: red;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .main-footer {
        display: none !important;
        flex-direction: column;
        align-items: center;
    }

    .sub-footer {
        gap: 10px;
        margin-bottom: 40px;
    }

    .footer-column {
        text-align: center;
    }
}

@media (max-width: 820px) {
    .main-footer {
        display: none !important;
        flex-direction: column;
        align-items: center;
    }

    .sub-footer {
        gap: 10px;
        margin-bottom: 40px;
    }

    .footer-column {
        text-align: center;
    }
}

@media (max-width: 912px) {
    .main-footer {
        display: none !important;
        flex-direction: column;
        align-items: center;
    }

    .sub-footer {
        gap: 10px;
        margin-bottom: 40px;
    }

    .footer-column {
        text-align: center;
    }
}


/* --- Section Container --- */
.exclusive-games-container {
    /*width: 100%;*/
    max-width: 1200px;
    margin-left: 60px;
}

/* --- Section Header --- */
.exclusive-games-container h2 {
    font-size: 1.5rem;
    /* Approx 24px */
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
    /* Margin bottom */
}

/* --- Games Grid --- */
.games-grid {
    display: flex;
    gap: 0.25rem;
    /* Approx 20px */
    overflow-x: auto;
    /* Allows for horizontal scrolling on smaller screens */
    padding-bottom: 1rem;
    /* Space for scrollbar if it appears */
}


/* Hide scrollbar for a cleaner look but keep functionality */
.games-grid::-webkit-scrollbar {
    display: none;
}

.games-grid {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}


/* --- Game Card --- */
.game-card2 {
    position: relative;
    /* Needed for the overlay positioning */
    flex-shrink: 0;
    width: 297px;
    /* Set a fixed width for items */
    border-radius: 12px;
    overflow: hidden;
    /* Clips the image and overlay to the rounded corners */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-card2:hover {
    transform: scale(1.05);
    /* Slightly enlarges the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.game-card2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the card area */
}

/* --- Hover Overlay --- */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.game-card2:hover .game-overlay {
    opacity: 1;
    /* Becomes visible on hover */
}

.game-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Play Button --- */
.play-button {
    background-color: #68a53b;
    /* Green color from the image */
    color: #ffffff;
    font-weight: bold;
    font-size: 0.875rem;
    /* Approx 14px */
    border: none;
    border-radius: 50px;
    /* Makes it a pill shape */
    padding: 0.75rem 2.5rem;
    /* Approx 12px 40px */
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.play-button:hover {
    background-color: #578a30;
    /* A slightly darker green for hover */
}

.seo-section {

    padding: 20px 158px 10px 125px;
}

.seo-section strong {
    color: red;
    font-style: italic;
}

.play-button2 {
    background: #9dce78;
    color: white;
    padding: 2px;
    border: none;
    margin-top: 0.5rem;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: inset 0 -21.12px 19.2px #357b00;
}

.FloatingButtons__item {
    --floating-button-size: 2.14rem;
    --floating-button-item-bg: #de1f26;
    align-items: center;
    background-color: var(--floating-button-item-bg);
    border-radius: 3rem;
    box-shadow: 0 0 1.83rem #0000004d;
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    height: var(--floating-button-size);
    margin-bottom: calc(10vh - var(--floating-button-size));
    overflow: hidden;
    text-decoration: none;
    transition: width 0.3s ease-in-out, background-color 0.3s ease;
    width: var(--floating-button-size);
    position: fixed;
    bottom: 2rem;
    top: 26rem;
    right: 1rem;
    padding: 15px 1rem;
    z-index: 1000;
}

/* When hovered or focused → expand */
.FloatingButtons__item:hover,
.FloatingButtons__item:focus-within {
    width: 18rem;
    background-color: #c9181f;
}

/* Inner wrapper */
.GameSearchGlobal__wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Icon */
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-right: 0.5rem;
    flex-shrink: 0;
    height: 100%;
    /* add this */
}

/* Input field */
.GameSearchGlobal__input {
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show input when expanded */
.FloatingButtons__item:hover .GameSearchGlobal__input,
.FloatingButtons__item:focus-within .GameSearchGlobal__input {
    opacity: 1;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex !important;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#loginModal .modal-content {
    width: 300px;
}

#forgotPasswordModal .modal-content {
    width: 800px;
    max-width: 95%;
    text-align: left;
    display: block;
    margin: 100px auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #900;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.login-input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    background: #eee;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

.login-btn {
    background: linear-gradient(to bottom, #b3f186, #3d860b);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    padding: 10px;
    width: 57%;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: linear-gradient(to bottom, #a5e27c, #2f6d08);
}

.forgot-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #000000;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.join-text {
    margin-top: 10px;
    font-size: 13px;
    color: #333;
}

.join-text a {
    color: #d00000;
    font-weight: bold;
    text-decoration: none;
}

.join-text a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    #forgotPasswordModal .modal-content {
        width: 90%;
    }
}

/* =========================
           MOBILE / SMALL SCREEN OVERRIDES
           (only below these breakpoints)
           ========================= */

/* General mobile layout */
@media (max-width: 767px) {

    /* header: reduce padding but don't change desktop layout */
    header {
        padding: 12px 16px;

    }

    header .logo img {
        width: 100px;
        height: auto;
        display: block;
    }

    nav {
        flex-direction: row;
        /* keep it horizontal but scrollable */
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0;
        width: 100%;
        z-index: 1000;
    }

    nav a {
        white-space: nowrap;
        padding: 6px 8px;
        font-size: 13px;
    }

    .header-buttons {
        width: 93% !important;
        display: flex;
        justify-content: space-between;
        gap: 8px;
        margin-top: 8px;
    }

    .header-buttons>div {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .header-buttons .btn {
        font-size: 13px;
        padding: 12px 17px;
        border-radius: 21px;
    }

    .forgot-link {
        display: none;
        
    }

    /* Hero adjustments */
    .hero {
        min-height: 45vw;
        max-height: none;
        padding: 24px 12px;
    }

    .hero h1 {
        font-size: 20px;
        margin: 0;
        text-align: center;
        padding: 0 8px;
    }

    /* Play button (large CTA) */
    .play-btn {
        display: block;
        margin: 12px auto;
        width: calc(100% - 32px);
        max-width: 480px;
        padding: 12px;
        border-radius: 10px;
        font-size: 16px;
    }

    /* Content & containers padding */
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .content {
        padding: 0 6px;
    }

    .bingo-slider-container {
        padding: 12px;
    }

    .bingo-slider {
        gap: 12px;
    }

    .bingo-card {
        min-width: 60%;
        max-width: 92%;
        height: auto;
        /* allow contents to define height */
        scroll-snap-align: start;
    }

    .bingo-card img {
        height: 150px;
    }

    .slider-btn {
        display: none;
    }

    /* Exclusive games */
    .exclusive-games-container {
        padding: 12px;
    }

    .exclusive-games-container h2 {
        font-size: 1.2rem;
    }

    .games-grid {
        gap: 10px;
    }

    .game-card2 {
        /* width: 90%; */
        width: 180px;
        height: 230px;
        max-width: 420px;
    }

    /* Game wrappers (New/Originals etc) */
    .games-wrapper {
        gap: 12px;
        padding: 16px 0;
        width: 100%;
    }

    .game-type1 {
        width: 48%;
        height: auto;
    }

    .game-type1 img {
        height: auto;
        object-fit: cover;
    }


    .card-overlay h3 {
        font-size: 15px;
    }

    .play-button {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* footer changes */
    .footer-main {
        font-size: 13px;
        padding: 0 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-awards {
        gap: 20px;
    }

    .footer-awards img {
        height: 130px;
        width: 112px;
        margin: auto;
    }

    .footer-top img {
        height: 28px;
    }

    .sub-footer {
        gap: 1.5rem;
        padding: 12px;
    }

    .social-icon {
        font-size: 1rem;
    }

    .seo-section {
        width: 95%;
        padding: 0px;
        padding-left: 12px;
        font-size: 12px;
    }

    .p-tag-l {
        margin-bottom: 5rem;
    }



    /* Floating search/button reposition (mobile-friendly) */
    .FloatingButtons__item {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        padding: 10px;
        width: 2.6rem;
    }

}

.lo-hum {
    display: flex;
    gap: 0rem;
}

@media (min-width: 375px) {
    .lo-hum {
        gap: 0rem !important;
    }
}

@media (min-width: 425px) {
    .lo-hum {
        gap: 0rem !important;
    }
}

/* end max-width:767px */

/* Extra small phones */
@media (max-width: 480px) {

    header {
        padding: 10px 12px;
    }

    header .logo img {
        width: 90px;
    }

    nav a {
        font-size: 12px;
        padding: 6px;
    }

    .header-buttons {

        flex-direction: column;
        align-items: stretch;
    }

    .header-buttons>div {
        width: 105%;
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 18px;
    }

    .game-type1 {
        /* width: 100%; */
    }

    .game-type1 img {
        height: 167px !important;
    }

    .bingo-card {
        min-width: 50%;
    }

    .exclusive-games-container h2 {
        font-size: 1.05rem;
    }

    .footer-awards {
        gap: 12px;
    }

    .sub-footer {
        gap: 1rem;
    }
}

.last-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.last-main img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* ===============================
   MOBILE CUSTOM BOTTOM NAVIGATION
   =============================== */


@media (max-width: 1024px) {

    /*footer,*/
    /*.main-footer,*/
    /*.last-sec,*/
    /*.sub-footer {*/
    /*    display: none !important;*/
    /*}*/

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #d60000;
        display: flex;
        justify-content: space-around;
        align-items: center;
        /*max-width: 95%;*/
        z-index: 3;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
    }

    .bottom-nav a {
        flex: 1;
        text-align: center;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }

    .bottom-nav svg {
        width: 22px;
        height: 22px;
    }

    .bottom-nav a span {
        line-height: 1;
    }

    .bottom-nav a.active {
        background: rgba(255, 255, 255, 0.2);
    }

    .bottom-nav a:active {
        background: rgba(255, 255, 255, 0.3);
    }
}

/* Hide on desktop */
@media (min-width: 1020px) {
    .bottom-nav {
        display: none !important;
    }
}

.sub-footer-img img {
    width: 150px;

}

@media (max-width: 576px) {
    .sub-footer-img img {
        width: 85px !important;
    }
}

@media (max-width:1024px) {
    .games-wrapper {
        /* flex-wrap: nowrap !important; */

    }

    .game-type1 {
        height: auto !important;
    }

    header {
        /*padding: 0px 3px;*/
    }


}

#mobile-header {
    display: none;
}

@media (max-width:768px) {
    #mobile-header {
        display: flex;
        align-items: anchor-center;
    }

    #desktop-header {
        display: none !important;
    }

    .header-buttons {
        padding: 5px;
        margin-left: 3rem;
    }

    .hamburger {
        margin-left: 1rem;
    }

    .logo {
        margin-left: 2rem;
    }

    #headerBtns2 {
        display: none !important;
    }


    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* Drawer Menu */
    #navMenu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100%;
        background: #e60000;
        color: #fff;
        overflow-y: auto;
        padding-top: 60px;
        transition: left 0.4s ease;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        /* ensures links stack vertically */
    }

    #navMenu.active {
        left: 0;
    }

    #navMenu a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        width: 100%;
        transition: background 0.3s;
    }

    #navMenu a:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    #navMenu svg,
    #navMenu i {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }

    #navMenu span {
        flex-grow: 1;
    }

    /* Fixes: each link full-width, no two links inline */
    #navMenu a+a {
        display: flex;
    }

    /* OVERLAY BACKGROUND */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* OPTIONAL CLOSE BUTTON (top right X) */
    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.6rem;
        cursor: pointer;
        color: white;
    }

    .desktop-burger {
        display: none;
    }

    .game-menu {
        display: block !important;
        position: sticky;
        top: 57px;
        z-index: 999;
        background: white;
    }
}

@media (max-width:820px) {
    #mobile-header {
        display: flex;
        align-items: anchor-center;
    }

    #desktop-header {
        display: none !important;
    }

    .header-buttons {
        padding: 5px;
        margin-left: 3rem;
    }

    .hamburger {
        margin-left: 1rem;
    }

    .logo {
        margin-left: 2rem;
    }

    #headerBtns2 {
        display: none !important;
    }


    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* Drawer Menu */
    #navMenu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100%;
        background: #e60000;
        color: #fff;
        overflow-y: auto;
        padding-top: 60px;
        transition: left 0.4s ease;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        /* ensures links stack vertically */
    }

    #navMenu.active {
        left: 0;
    }

    #navMenu a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        width: 100%;
        transition: background 0.3s;
    }

    #navMenu a:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    #navMenu svg,
    #navMenu i {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }

    #navMenu span {
        flex-grow: 1;
    }

    /* Fixes: each link full-width, no two links inline */
    #navMenu a+a {
        display: flex;
    }

    /* OVERLAY BACKGROUND */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* OPTIONAL CLOSE BUTTON (top right X) */
    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.6rem;
        cursor: pointer;
        color: white;
    }

    .desktop-burger {
        display: none;
    }

    .game-menu {
        display: block !important;
        position: sticky;
        top: 57px;
        z-index: 999;
        background: white;
    }
}

@media (max-width:912px) {
    #mobile-header {
        display: flex;
        align-items: anchor-center;
    }

    #desktop-header {
        display: none !important;
    }

    .header-buttons {
        padding: 5px;
        margin-left: 3rem;
    }

    .hamburger {
        margin-left: 1rem;
    }

    .logo {
        margin-left: 2rem;
    }

    #headerBtns2 {
        display: none !important;
    }


    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* Drawer Menu */
    #navMenu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100%;
        background: #e60000;
        color: #fff;
        overflow-y: auto;
        padding-top: 60px;
        transition: left 0.4s ease;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        /* ensures links stack vertically */
    }

    #navMenu.active {
        left: 0;
    }

    #navMenu a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        width: 100%;
        transition: background 0.3s;
    }

    #navMenu a:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    #navMenu svg,
    #navMenu i {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }

    #navMenu span {
        flex-grow: 1;
    }

    /* Fixes: each link full-width, no two links inline */
    #navMenu a+a {
        display: flex;
    }

    /* OVERLAY BACKGROUND */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* OPTIONAL CLOSE BUTTON (top right X) */
    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.6rem;
        cursor: pointer;
        color: white;
    }

    .desktop-burger {
        display: none;
    }

    .game-menu {
        display: block !important;
        position: sticky;
        top: 57px;
        z-index: 999;
        background: white;
    }
}

.mobile-burger {
    display: none;
}

.game-menu {
    display: none;
}

/* Horizontal Slider Menu */
.game-menu {
    background-color: #B71B1B;
    /* Sun Bingo red */
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* hide scrollbar on Firefox */
}

.game-menu::-webkit-scrollbar {
    display: none;
    /* hide scrollbar on Chrome/Safari */
}

.game-menu-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px 0;
}

.game-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    /*min-width: 90px;*/
    margin-left: 1rem;
    padding: 6px 0px;
    transition: color 0.3s, transform 0.3s;
}

.game-menu a i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.game-menu a span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.game-menu a.active,
.game-menu a:hover {
    color: #ffd700;
    /* yellow/golden highlight */
    transform: scale(1.05);
}

@media (max-width:375px) {
    .header-buttons {
        margin-left: 0rem !important;
    }

    .header-buttons>div {
        width: 105% !important;
    }
}

@media (width:390px) {
    .header-buttons {
        margin-left: 3rem !important;
    }

    .header-buttons>div {
        width: 105% !important;
    }
}

@media (width:360px) {
    .header-buttons {
        margin-left: 0rem !important;
    }

    .header-buttons>div {
        width: 105% !important;
    }

    .header-buttons .btn {
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 21px;
    }
}

@media (width:344px) {
    .header-buttons {
        margin-left: 0rem !important;
    }

    .header-buttons>div {
        width: 105% !important;
    }

    .header-buttons .btn {
        font-size: 13px;
        padding: 8px 10px;
        border-radius: 21px;
    }
}

@media (max-width:320px) {

    .footer-top {
        height: 270px;
    }
}
@media (min-width:320px) {
    .header-buttons .btn {
        font-size: 10px !important;
        padding: 10px 12px !important;
    }

}


.prev,
.next {
    display: none;
}

.nav-icon {
    display: none;
}

@media (max-width:576px) {
    .nav-icon {
        display: block;
    }
}

/* --- Tab Container (Red Bar) --- */
.tabs-container {
    background-color: #e60000;
    /* Red background jaisa image mein hai */
    overflow: hidden;
    padding: 8px 10px;
}

/* --- Tab List (Horizontal Scroll) --- */
.tabs-list {
    display: flex;
    /* Tabs ko ek line mein laata hai */
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    /* Horizontal scroll yahaan se enable hota hai */
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll mobile par */

    /* Scrollbar ko hide karne ke liye (optional, magar acha lagta hai) */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.tabs-list::-webkit-scrollbar {
    display: none;
    /* Safari aur Chrome */
}

/* --- Individual Tab Item --- */
.tab-item {
    flex-shrink: 0;
    /* Tabs ko shrink hone se rokta hai */
    margin-right: 10px;
}

.tab-item:last-child {
    margin-right: 0;
}

.tab-item a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #ffffff;
    /* White text */
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 20px;
    /* Rounded corners ke liye */
    white-space: nowrap;
    /* Text ko wrap hone se rokta hai */
    transition: background-color 0.3s, color 0.3s;
}

/* --- Active Tab Styling (Jaisa "NEW" button) --- */
.tab-item a.active {
    background-color: #ffffff;
    /* White background */
    color: black;
    /* Red text */
    margin-left: 8px;
}

/* --- Content Area (Cards yahaan show honge) --- */
.tabs-content {
    max-width: 100%;
    padding: 20px;
    overflow: hidden;
}

.content-panel {
    display: none;
    /* Default mein sab content hide hoga */
    animation: fadeIn 0.5s;
}

.content-panel.active {
    display: block
}

.c-panel-res {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.g-wrapper-heading {
    margin-left: 80px;
}

/* --- Desktop pe Hide karne ke liye Media Query --- */
@media (min-width: 769px) {

    .tabs-container,
    .tabs-content {
        /* 769px se badi screens par hide ho jayega */
        display: none;
    }

    /* Aap yahaan desktop ke liye ek message show kar sakte hain */
    /*body::after {*/
    /*content: "Yeh interface sirf mobile view ke liye hai. Desktop par hide hai.";*/
    /*    display: block;*/
    /*    text-align: center;*/
    /*    padding: 50px;*/
    /*    font-size: 18px;*/
    /*}*/
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width:576px) {
    .play-btn {
        width: auto !important;
        border-radius: 0px !important;
    }

    .bingo-card {
        min-width: 62% !important;
    }

    .exclusive-games-container {
        display: none;
    }

    .games-wrapper {
        display: none;
    }

    .g-wrapper-heading {
        display: none;
    }

    .tabs-container {
        margin-left: -1rem;
        margin-right: -0.3rem;
    }
}

@media (min-width: 600px) and (max-width: 768px) and (max-width: 820px) {
    .header-buttons {
        display: block !important;
    }

    .lo-hum {
        gap: 10rem !important;
    }
}

@media (max-width:576px) {
    .footer-sec {
        z-index: 9999;
    }

    .last-sec {
        padding: 15px;
        z-index: 3;
        position: absolute;
    }

    .main-footer {
        display: none !important;
    }
}

@media (width: 540px) {
    .header-buttons {
        padding: 5px;
        margin-left: 9rem;
    }
}

.seo-wrapper {

            padding: 20px 40px 10px 40px;
        }

        .seo-wrapper strong {
            color: red;
            font-style: italic;
        }

