/* Custom CSS for BirlaExch Home Page Replica - 100% Pixel Perfect Match */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

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

/* Hide scrollbar completely */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

/*
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ddb938;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c7a732;
}

::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

::-webkit-scrollbar-corner {
    background: #000000;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ddb938 #000000;
}
*/

body {
    background-color: #ececed;
    color: #212529;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Top Utility Bar */
.header-top {
    background-color: #ddb938;
    height: 25px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #c5a530;
}

.socialmediaicon {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.socialmediaicon li {
    display: flex;
    align-items: center;
}

.socialmediaicon li a {
    font-family: Roboto Condensed, sans-serif;
    color: #000;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.socialmediaicon li a i {
    font-size: 12px;
}

.header-top-right {
    color: #000;
    font-weight: bold;
}

/* Main Header */
.loginheader {
    background-color: #000000;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 900;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container .fa-bars {
    color: #ddb938;
    font-size: 18px;
    cursor: pointer;
}

.brand-logo-img {
    padding-left: 10px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.header-actions {
    display: flex;
    gap: 5px;
    align-items: center;
}

.btn-login,
.btn-signup {
    background-color: #ddb938;
    background-image: linear-gradient(#ddb938, #825204);
    color: #fff !important;
    font-family: Roboto Condensed, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    padding: 5px 15px;
    border: 1px solid #825204;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-login {
    color: #000;
}

.btn-signup {
    color: #fff;
}

.btn-login:hover,
.btn-signup:hover {
    background-color: #c7a732;
}

/* Sub Navigation Bar */
.b2cmenu {
    background-color: #825204;
    height: 39px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: visible;
    white-space: nowrap;
    padding: 0 0px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    position: sticky;
    top: 75px;
    z-index: 999;
}

.b2cmenu::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.b2cmenu ul {
    list-style: none;
    display: flex;
    gap: 0px;
    align-items: center;
    height: 100%;
}

.b2cmenu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.b2cmenu li a {
    color: #fff;
    font-family: Roboto Condensed, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 12px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.b2cmenu li.active a {
    background-color: #ddb938;
    color: #000;
}

.b2cmenu li a:hover {
    background-color: #ddb938;
    color: #000;
}

/* Scrollmenu Desktop Hidden */
.scrollmenu {
    display: none;
}

.tag-live {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .5);
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    height: 12px;
    min-width: 33px;
    position: absolute;
    right: 3px;
    top: -6px;
    z-index: 999;
    pointer-events: none;
    background-color: #ffffff;
    /* border: 1px solid #fb3434; */
    overflow: hidden;
}

.tag-live-text {
    color: #fb3434;
    background-color: #ffffff;
    font-size: 7.5px;
    font-weight: bold;
    padding: 0 5px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: live-blink 2.0s infinite step-end;
}

@keyframes live-blink {

    0%,
    100% {
        color: #fb3434;
        background-color: #ffffff;
    }

    50% {
        color: #f6c5c5;
    }
}

.tag-live-num {
    color: #ffffff;
    background-color: #fb3434;
    font-size: 7.5px;
    font-weight: bold;
    padding: 0 3px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aviator-plane {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 18px;
    width: auto;
    pointer-events: none;
}

.b2cmenu li a.ezugi-link {
    color: #e03a7a;
    animation: ezugi-rainbow 1s infinite linear;
}

.b2cmenu li a.ezugi-link:hover {
    color: #000 !important;
    animation: none !important;
}

@keyframes ezugi-rainbow {

    0%,
    100% {
        color: #ff0000;
        /* Red */
    }

    25% {
        color: #28a745;
        /* Green */
    }

    50% {
        color: #007bff;
        /* Blue */
    }

    75% {
        color: #9b5de5;
        /* Purple */
    }
}

/* Hero Carousel Slider */
.hero-slider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.slider-dots span {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots span.active {
    background-color: #fff;
}

/* Promos and Grid Layout */
.promos-container {
    width: 100%;
    padding: 8px 10px;
    margin: 0 auto;
}

/* Triple Promos */
.triple-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.triple-promos img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* Double Promos */
.double-promos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}

.double-promos img {
    width: 100%;
    display: block;
}

/* News Marquee bar */
.marquee-static {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    margin: 10px 0;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    color: #333;
}

.marquee-static i {
    color: #888;
    cursor: pointer;
}

/* Top Games Section */
.top-games-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 15px 0 8px;
    padding-left: 2px;
}

.top-games-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.top-games-slider-wrapper {
    display: flex;
    gap: 6px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.top-game-slide {
    flex: 0 0 calc((100% - 48px) / 9);
    width: calc((100% - 48px) / 9);
}

.top-game-slide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    border: 1px solid #dcdcdc;
}

/* Section Header Bar */
.section-header {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #825204;
    padding: 3px 6px;
    text-transform: uppercase;
    border-radius: 0px 0px 0 0;
    margin-top: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Odds Table Grid */
.odds-table {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    margin-bottom: 7px;
    overflow: hidden;
}

.odds-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 2px 12px;
    font-size: 12px;
    justify-content: space-between;
}

.odds-row:last-child {
    border-bottom: none;
}

.odds-row.empty-row {
    color: #000000;
    padding: 12px;
    font-family: Roboto Condensed, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.match-info {
    flex: 1;
}

.match-date-time {
    font-family: Roboto Condensed, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.live-indicator {
    color: #28a745;
    font-weight: bold;
}

.odds-icons {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0 4px;
}

.odds-icons img {
    height: 15px;
    object-fit: contain;
}

.odds-cols {
    display: flex;
    gap: 4px;
}

/* Back/Lay Odds cells */
.odds-cell {
    width: 90px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.odds-cell.back {
    background-color: #72bbef;
    color: #000;
}

.odds-cell.lay {
    background-color: #f6b3c9;
    color: #000;
}

.odds-cell.empty {
    background-color: #72bbef;
    border: 1px solid #72bbef;
    cursor: default;
}

.odds-cell .odds-val {
    font-size: 12px;
    line-height: 1.1;
}

.odds-cell .odds-size {
    font-size: 9px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 1px;
}

.view-more-link {
    font-family: Roboto Condensed, sans-serif;
    display: block;
    text-align: right;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Floating WhatsApp Button */
.whatsapp-floater-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 13px;
}

.whatsapp-floater-btn img {
    width: 22px;
    height: 22px;
}

/* Sponsor logo bar in footer */
.footer-sponsor-bar {
    background-color: #000000;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-sponsor-bar img {
    height: 60px;
    object-fit: contain;
    max-width: 90px;
}

/* Footer main layout */
footer {
    background-color: #000000;
    color: #a1aed4;
    padding: 30px 15px 15px;
    font-size: 12px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 25px;
}

.footer-about img {
    height: 38px;
    margin-bottom: 15px;
    object-fit: contain;
    display: block;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-column h4 {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
    text-transform: capitalize;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #ffb400;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
    color: #777;
}

/* Custom Hero Slider and Accordion styling */
.hero-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: auto;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: auto;
}

.accordion-mainbox {
    width: 100%;
    margin: 15px 0;
}

.accordion-innerbox {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-head {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    user-select: none;
}

.accordion-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.accordion-arrow {
    color: #888;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 15px;
    border-top: 1px solid #eee;
    display: none;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    background-color: #fafafa;
}

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

.accordion-innerbox.active .accordion-arrow {
    transform: rotate(180deg);
}

/* Navigation & Odds Icons (hidden on desktop) */
.menu-icon {
    display: none;
}
.match-icons-right {
    display: none;
}

/* Media Queries for Viewports */
@media (max-width: 991px) {
    .top-game-slide {
        flex: 0 0 calc((100% - 24px) / 5);
        width: calc((100% - 24px) / 5);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .header-top {
        display: flex !important;
        height: 25px !important;
        padding: 0 10px !important;
        font-size: 10px !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .socialmediaicon {
        gap: 8px !important;
    }

    .socialmediaicon .m-hide {
        display: none !important;
    }

    .triple-promos {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .double-promos {
        grid-template-columns: 1fr;
    }

    .top-game-slide {
        flex: 0 0 calc((100% - 12px) / 3);
        width: calc((100% - 12px) / 3);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile! */
        gap: 20px;
    }

    /* Smaller sponsor/provider logos on mobile */
    .footer-sponsor-bar {
        padding: 10px 8px !important;
        gap: 10px !important;
    }

    .footer-sponsor-bar img {
        height: 20px !important;
        max-width: 60px !important;
    }

    /* Mobile-only white footer styling overrides */
    .footer-sponsor-bar {
        background-color: #ffffff !important;
        border-top: 1px solid #e0e0e0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }

    footer {
        background-color: #ffffff !important;
        color: #333333 !important;
    }

    .footer-about p {
        color: #333333 !important;
    }

    .footer-column h4 {
        color: #c7a732 !important; /* Premium Gold */
    }

    .footer-column ul li a {
        color: #333333 !important;
    }

    .footer-column ul li a:hover {
        color: #c7a732 !important;
    }

    .footer-bottom-bar {
        border-top: 1px solid #e0e0e0 !important;
        color: #666666 !important;
    }

    /* Sub-Nav Icons on Mobile */
    .b2cmenu {
        display: none !important;
    }

    .scrollmenu.marposition {
        display: block !important;
        background-color: #825204;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        position: sticky;
        top: 75px;
        z-index: 999;
        height: 52px;
    }

    .scrollmenu.marposition::-webkit-scrollbar {
        display: none;
    }

    .scrollmenu a {
        color: #fff;
        display: inline-block;
        font-family: Roboto Condensed, sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 5px 15px 3px;
        position: relative;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        vertical-align: top;
    }

    .scrollmenu a.active {
        background-color: #dd9e21;
        background-image: linear-gradient(#dd9e21, #dd9e21);
    }

    /* Live icons & sprites */
    .marposition .sports-icon {
        background-image: url(https://images.staticcontent.io/casino/banner/images/sports-icons.png);
        background-position: 0 -900px;
        background-repeat: no-repeat;
        background-size: 28px auto;
        display: block;
        height: 24px;
        margin: 0 auto 2px;
        overflow: hidden;
        text-align: center;
        width: 28px;
    }

    .marposition .sports-icon.inplaymobile { background-position: 0 -1527px; }
    .marposition .sports-icon.cricketmobile { background-position: 0 -326px; }
    .marposition .sports-icon.soccermobile { background-position: 0 -1026px; }
    .marposition .sports-icon.tennismobile { background-position: 0 -1096px; }
    .marposition .sports-icon.horsemobile { background-position: 0 -677px; }
    .marposition .sports-icon.greyhoundmobile { background-position: 0 -630px; }
    .marposition .sports-icon.iplwinnermobile { background-position: 0 -1775px; }
    .marposition .sports-icon.indianpokermobile { background-position: 0 -1742px; }
    .marposition .sports-icon.casinoside-evomobile { background-position: 0 -1707px; }
    .marposition .sports-icon.casinomobile { background-position: 0 -863px; }
    .marposition .sports-icon.electionmobile { background-position: 0 -886px; }
    .marposition .sports-icon.virtualgamemobile { background-position: 0 -466px; }
    .marposition .sports-icon.binarymobile { background-position: 0 -423px; }
    .marposition .sports-icon.sportbookmobile { background-position: 0 -187px; }
    .marposition .sports-icon.kabaddimobile { background-position: 0 -1802px; }

    /* Aviator & Chicken Road mobile tabs style */
    .ball-images-tab1-aviator-mobile {
        display: block;
        height: 23px;
        margin: 0 auto 3px;
        text-align: center;
        width: 35px;
    }

    .new-scrollmenu.inout-images-tab {
        height: 20px;
        width: 50px;
        display: block;
        margin: 3px auto 3px;
    }

    /* Live capsule badge on mobile scrollmenu */
    .tag-livemobile {
        background-image: linear-gradient(180deg, #fb3434, #e80505);
        border-radius: 3px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .5);
        box-sizing: border-box;
        color: #fff;
        font-size: 10px;
        height: 12px;
        line-height: 12px;
        min-width: 33px;
        padding-right: 3px;
        position: absolute;
        right: 3px;
        text-align: center;
        top: 8px; /* Positioned inside anchor to prevent overflow clipping */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .tag-livemobile strong {
        background-image: linear-gradient(180deg, #fff, #eee 89%);
        border-radius: 3px 0 0 3px;
        flex: 1 1;
        font-size: 0;
        height: 100%;
        margin-right: 3px;
        padding: 0 2px;
        text-indent: -99999px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tag-livemobile strong:before {
        background: url(https://images.staticcontent.io/bir/uimg/download.svg) no-repeat center center;
        background-size: contain;
        content: "";
        height: 8px;
        width: 14px;
        -webkit-animation: twinkling 1.4s ease infinite;
        animation: twinkling 1.4s ease infinite;
    }

    @-webkit-keyframes twinkling {
        0%, 100% { opacity: 1; }
        50% { opacity: .3; }
    }

    @keyframes twinkling {
        0%, 100% { opacity: 1; }
        50% { opacity: .3; }
    }

    /* Odds Table Mobile Stacking and Grid */
    .odds-header-row {
        display: none !important;
    }

    .odds-row {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 8px 10px !important;
        gap: 6px !important;
        height: auto !important;
    }

    .match-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
    }

    .match-info-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .match-name {
        font-size: 13px !important;
        font-weight: bold !important;
        color: #000000 !important;
        font-family: Roboto Condensed, sans-serif;
    }

    .match-icons-right {
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .match-icons-right img {
        height: 14px !important;
        object-fit: contain;
    }

    .match-meta-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        font-size: 11px !important;
        color: #666666 !important;
        font-family: Roboto Condensed, sans-serif;
    }

    .match-date-time {
        font-size: 11px !important;
        color: #666666 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .pin-icon {
        font-size: 12px !important;
        color: #c7a732 !important; /* Gold pin icon */
        cursor: pointer;
    }

    .odds-row > .odds-icons {
        display: none !important; /* Hide desktop icons column */
    }

    .odds-cols {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 4px !important;
        width: 100% !important;
    }

    .odds-cell {
        width: 100% !important;
        height: 28px !important;
        border-radius: 3px !important;
        font-size: 12px !important;
    }

    /* Set popup width on mobile */
    .signup-popup-content {
        width: 95% !important;
        max-width: 480px !important;
        border-width: 4px !important;
        padding: 10px 15px !important;
    }
}

/* Mobile Bottom Navigation Bar */
.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: #000000;
    border-top: 1px solid #1a1a1a;
    z-index: 999;
    display: none;
}

@media (max-width: 767px) {
    .footer-menu {
        display: block;
    }

    body {
        padding-bottom: 52px;
    }
}

.footer-menu .wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 12px;
}

.footer-menu .button-f {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a1aed4;
    text-decoration: none;
    cursor: pointer;
    height: 100%;
    transition: all 0.2s ease;
}

.footer-menu .button-f span {
    display: none; /* Hide labels for inactive items */
}

.footer-menu .button-f .icon img {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Style active bottom bar menu item as capsule button */
.footer-menu .button-f.active {
    flex-direction: row !important;
    background-color: #825204;
    border-radius: 20px;
    padding: 6px 14px;
    height: auto;
    color: #ffffff;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.footer-menu .button-f.active span {
    display: inline !important;
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    font-family: Roboto Condensed, sans-serif;
}

.footer-menu .button-f.active .icon img {
    height: 16px;
}

/* Sign Up Popup Modal Styles */
.signup-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.signup-popup-content {
    background: #ffffff;
    border: 5px solid #825204;
    border-radius: 15px;
    width: 30%;
    max-width: 520px;
    position: relative;
    padding: 10px 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    max-height: 90vh;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Hide scrollbar for popup card on Chrome/Safari/Webkit */
.signup-popup-content::-webkit-scrollbar {
    width: 5px;
}

.signup-popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.signup-popup-content::-webkit-scrollbar-thumb {
    background: #ddb938;
    border-radius: 4px;
}

.signup-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s ease;
}

.signup-popup-close:hover {
    color: #ff0000;
}

.signup-popup-header {
    text-align: center;
    margin-bottom: 10px;
}

.signup-popup-subtitle {
    font-size: 14px;
    color: #000;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-family: Roboto Condensed, sans-serif;
}

.signup-popup-title {
    font-size: 24px;
    color: #000;
    margin-top: 1px;
    font-family: Roboto Condensed, sans-serif;
    text-align: center;
}

/* WhatsApp Button styling */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 265px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(90deg, #ff4e3e 0%, #e91e63 100%);
}

.whatsapp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wa-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.whatsapp-btn-text {
    color: #ffffff;
    font-family: Roboto Condensed, sans-serif;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: 0.5px;
    animation: whatsapp-text-blink 1.2s infinite ease-in-out;
}

@keyframes whatsapp-text-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* Separator */
.signup-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    height: 1.5px;
}

.signup-divider::before {
    background: linear-gradient(to right, transparent, #000000);
}

.signup-divider::after {
    background: linear-gradient(to right, #000000, transparent);
}

.signup-divider span {
    padding: 0 15px;
    font-family: Roboto Condensed, sans-serif;
    letter-spacing: 0.5px;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.signup-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.signup-form-group label {
    font-size: 14px;
    color: #000000;
    font-family: Roboto Condensed, sans-serif;
}

.signup-form-group label .required {
    color: #ff0000;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    height: 35px;
    border: 1.5px solid #3f4045;
    font-family: Roboto Condensed, sans-serif;
    border-radius: 10px;
    padding: 0 4px !important;
    font-size: 13px;
    outline: none;
    background: #ffffff;
    color: #000000;
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: #9c9c9c;
}

.form-input:focus {
    border-color: #825204;
}

/* Password eye icons */
.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper .form-input {
    padding-right: 40px;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b5998;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease;
}

.password-toggle-icon:hover {
    color: #000000;
}

/* Mobile Input Wrapper styles (Black background card style) */
.mobile-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #000000;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 14px;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    background-color: #ddb938;
    height: 100%;
    padding: 0 8px;
    margin-left: -10px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.flag-icon {
    width: 20px;
    height: 13px;
    object-fit: cover;
    border-radius: 1px;
}

.country-arrow {
    color: #000000;
    font-size: 8px;
    margin-left: 2px;
}

.country-code {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    margin-left: 8px;
    margin-right: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mobile-input-field {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    padding-right: 75px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.get-code-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 26px;
    padding: 0 12px;
    border-radius: 4px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    font-family: Roboto Condensed, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.get-code-btn:hover {
    background-color: #f0f0f0;
}

/* Disclaimer text */
.signup-disclaimer {
    font-size: 11px;
    color: #000;
    text-align: left;
    line-height: 1.4;
    margin-bottom: .25rem !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.signup-disclaimer u {
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

/* Submit Register Button */
.register-submit-btn {
    display: block;
    width: 95%;
    height: 40px;
    border: 1px solid #825204;
    border-radius: 6px;
    color: #000000;
    font-family: Roboto Condensed, sans-serif;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-transform: capitalize;
    background: linear-gradient(to bottom, #ddb938, #825204);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    margin: 5px auto 0;
}

.register-submit-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.register-submit-btn:active {
    transform: scale(0.99);
}

/* Signup Alert Banner */
.signup-alert-banner {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: center;
    font-family: Roboto Condensed, sans-serif;
    display: none; /* controlled by JS */
}

.signup-alert-banner.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.signup-alert-banner.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 576px) {
    .signup-popup-content {
        padding: 20px 16px 15px;
        border-width: 4px;
        border-radius: 16px;
    }

    .signup-popup-title {
        font-size: 20px;
    }

    .whatsapp-btn-text {
        font-size: 16px;
    }
}