:root {
    --bg-dark: #0B1220;
    --bg-darker: #070C17;
    --bg-card: #10192E;
    --neon-blue: #1688FF;
    --neon-gold: #F5B942;
    --neon-purple: #B24BE3;
    --text-white: #FFFFFF;
    --text-gray: #AAB7CC;
    --glass: rgba(255, 255, 255, 0.06);
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding-bottom: 80px; /* Bottom nav-এর জন্য জায়গা */
    overflow-x: hidden;
}

/* ============ TOP APP PROMO BAR (লোগো + স্টার + Download + X) ============ */
.app-promo-bar {
    background: var(--bg-darker);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--glass);
}
.app-promo-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.app-promo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-card);
}
.app-promo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.app-promo-title {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.app-promo-stars { font-size: 10px; color: var(--neon-gold); letter-spacing: 1px; }
.app-promo-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.app-promo-download-btn {
    position: relative;
    overflow: hidden;
    background: var(--neon-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: promo-btn-pulse 1.6s ease-in-out infinite;
}
.app-promo-download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
    transform: skewX(-20deg);
    animation: promo-btn-shine 2.4s ease-in-out infinite;
}
@keyframes promo-btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
@keyframes promo-btn-shine {
    0%   { left: -60%; }
    55%  { left: 130%; }
    100% { left: 130%; }
}
.app-promo-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
}

/* ============ HEADER & BALANCE ============ */
.main-header {
    background: var(--bg-dark);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid var(--glass);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    padding: 4px;
    cursor: pointer;
}

.header-logo-img, .side-logo-img {
    height: 36px;
    max-width: 140px;
    width: auto;
    display: block;
    object-fit: contain;
    color: transparent;
    font-size: 0;
}
.side-logo-img { height: 46px; max-width: 190px; }
.header-logo, .side-logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--text-white);
}
.header-logo span, .side-logo span, .balance-box, .side-balance-box {
    color: var(--neon-gold);
}

.balance-box {
    background: var(--bg-card);
    border: 1px solid var(--neon-blue);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(22, 136, 255, 0.2);
    font-weight: bold;
    font-size: 13px;
}
.balance-box i { font-size: 10px; cursor: pointer; transition: transform 0.5s ease; }
.balance-box i.spinning, .side-balance-box i.spinning { animation: spin-refresh 0.6s linear; }
@keyframes spin-refresh { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.header-right { display: flex; align-items: center; gap: 10px; }
.header-icon-btn {
    background: var(--bg-card);
    border: 1px solid var(--glass);
    color: var(--neon-gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
}

/* ============ LOGIN / REGISTER (লগইন না থাকলে হেডারে দেখাবে) ============ */
.auth-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}
.auth-login-btn { background: #1FB86A; color: white; }
.auth-register-btn { background: var(--neon-blue); color: white; }

/* ============ BANNER CAROUSEL (মোবাইল-ফ্রেন্ডলি ফিক্সড সাইজ) ============ */
.banner-wrap { padding: 12px 0 6px; }
.banner-swiper { width: 100%; }
.banner-swiper .swiper-wrapper { width: 100%; }
.banner-swiper .swiper-slide {
    width: 100%;
    padding: 0 15px;
}
.banner-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid var(--glass);
    display: block;
}
.banner-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px dashed var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: gray;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}
.banner-swiper .swiper-pagination {
    position: static;
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.banner-swiper .swiper-pagination-bullet {
    background: var(--text-gray);
    opacity: 0.5;
    width: 5px;
    height: 5px;
    margin: 0 !important;
}
.banner-swiper .swiper-pagination-bullet-active {
    background: var(--neon-blue);
    opacity: 1;
    width: 16px;
    border-radius: 4px;
}

/* ============ FLOATING SUPPORT BUTTON (শুধু হালকা pulse নড়াচড়া, কোনো shine/সাদা আলো নেই) ============ */
.support-float-btn {
    position: fixed;
    right: 14px;
    bottom: 90px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--neon-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22,136,255,0.5);
    z-index: 940;
    animation: support-btn-pulse 1.8s ease-in-out infinite;
}
@keyframes support-btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ============ ANNOUNCEMENT (স্থির, স্ক্রল করে না) ============ */
.ticker-wrap {
    background: var(--bg-card);
    padding: 10px 14px;
    margin: 0 15px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--neon-gold);
    border: 1px solid var(--glass);
}
.ticker-static {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 18px;
    overflow: hidden;
}
.ticker-static-item {
    position: absolute;
    inset: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ticker-static-item.active { opacity: 1; }
.ticker-download-icon {
    flex-shrink: 0;
    color: var(--neon-gold);
    font-size: 13px;
    text-decoration: none;
    padding-left: 4px;
}

/* ============ CATEGORIES (বক্সড গ্রিড কার্ড) ============ */
.category-grid-box {
    background: var(--bg-card);
    border: 1px solid var(--glass);
    border-radius: 14px;
    margin: 0 15px;
    padding: 4px;
}
.category-list {
    display: flex;
    gap: 15px;
    padding: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.category-list::-webkit-scrollbar { display: none; }
.cat-item { text-align: center; min-width: 60px; text-decoration: none; color: var(--text-gray); font-size: 11px; cursor: pointer; }
.cat-icon {
    background: var(--bg-card);
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 5px; border: 1px solid var(--glass); font-size: 20px;
    overflow: hidden;
}
.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat-item.active { color: var(--text-white); }
.cat-item.active .cat-icon { background: var(--neon-blue); color: white; }

/* ============ GAME GRID ============ */
.section-title { padding: 0 15px; margin: 10px 0; }
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 15px;
}
.game-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass);
    text-decoration: none;
    color: white;
}
/* ছবির wrapper: এখানেই বাম থেকে ডানে সাদা শাইন সোয়াইপ হবে (App Download বাটনের মতো) */
.game-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.game-card-img-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.game-card-shine {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    animation: game-card-shine-move 3.2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes game-card-shine-move {
    0%   { left: -75%; }
    55%  { left: 130%; }
    100% { left: 130%; }
}
.game-card .name { font-size: 11px; padding: 6px 4px; margin: 0; display: block; text-align: center; }
.hot-badge {
    position: absolute; top: 6px; left: 6px;
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: bold;
    z-index: 2;
}
.empty-games-msg {
    grid-column: span 3;
    text-align: center;
    color: gray;
    font-size: 13px;
    padding: 20px 15px;
}

/* ============ লো-ব্যালেন্স কাস্টম এরর মডাল ============ */
.low-balance-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 20px;
}
.low-balance-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.low-balance-modal {
    position: relative;
    width: 100%;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--neon-blue);
    border-radius: 16px;
    padding: 30px 20px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.low-balance-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
}
.low-balance-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(22, 136, 255, 0.15);
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
}
.low-balance-modal h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--text-white);
}
.low-balance-modal p {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}
.low-balance-deposit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--neon-blue);
    color: white;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
}

/* ============ প্রমোশন পপ-আপ (শুধু ইমেজ, সাইজ ফিক্সড না — অ্যাডমিন যে সাইজের ছবি আপলোড করবে ঠিক সেই সাইজ/অনুপাতে দেখাবে) ============ */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 24px;
}
.promo-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.promo-popup-card {
    position: relative;
    display: inline-block;
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    background: var(--bg-card);
    line-height: 0;
}
.promo-popup-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 88vh;
}
.promo-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 2;
}

/* ============ BOTTOM NAVIGATION ============ */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-card);
    display: flex; justify-content: space-around;
    padding: 12px 0; border-top: 1px solid var(--glass);
    z-index: 950; box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}
.nav-link { text-align: center; color: var(--text-gray); text-decoration: none; font-size: 11px; }
.nav-link i { font-size: 20px; margin-bottom: 4px; display: block; }
.nav-link.active { color: var(--neon-blue); }
.deposit-btn { margin-top: -25px; }
.deposit-btn i {
    background: var(--neon-gold); color: black;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px var(--neon-gold); border: 4px solid var(--bg-dark);
    margin-bottom: 4px;
}

/* ==================================================
   SIDE MENU (হ্যামবার্গার চাপলে বাম দিক থেকে খুলবে)
   ================================================== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1998;
}
.sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 84%;
    max-width: 360px;
    background: var(--bg-dark);
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    padding: 18px 16px 100px;
}
.side-menu.open { 
    transform: translateX(0); 
    box-shadow: 4px 0 25px rgba(0,0,0,0.5);
}

.side-menu-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 18px;
}
.side-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
}

.side-balance-box {
    background: var(--bg-card);
    border: 1px solid var(--glass);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.side-balance-box i { color: var(--neon-blue); font-size: 16px; cursor: pointer; transition: transform 0.5s ease; }

.side-share-earn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #1688FF, #4FA6FF);
    color: white;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 16px 18px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(22,136,255,0.25);
}
.side-share-earn i { font-size: 20px; }

.side-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.side-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: white;
}
.side-action-btn.deposit { background: linear-gradient(135deg, #E3A233, var(--neon-gold)); color: #241804; }
.side-action-btn.promotion { background: linear-gradient(135deg, #8E2DE2, var(--neon-purple)); }
.side-action-btn i { font-size: 18px; }

.side-nav-list { display: flex; flex-direction: column; gap: 10px; }
.side-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: none;
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.side-nav-item i:first-child { color: var(--neon-blue); font-size: 17px; width: 18px; }
.side-caret { margin-left: auto; font-size: 12px; color: var(--text-gray); transition: transform 0.2s ease; }
.side-expandable.open .side-caret { transform: rotate(180deg); }

.side-submenu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: max-height 0.25s ease;
    margin: -4px 0 0 4px;
}
.side-submenu.open { max-height: 300px; margin-top: 2px; margin-bottom: 4px; }
.side-submenu-item {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    padding: 10px 16px 10px 34px;
    border-left: 2px solid var(--glass);
    cursor: pointer;
}
.side-submenu-empty {
    color: var(--text-gray);
    font-size: 12px;
    padding: 8px 16px 8px 34px;
    margin: 0;
}
.side-logout-item {
    margin-top: 6px;
    color: #FF5C5C !important;
}
.side-logout-item i:first-child { color: #FF5C5C !important; }

/* ==================================================
   ফুটার ইনফো সেকশন
   কালার এখন মেইন থিমের ভ্যারিয়েবল (bg-card / bg-darker / neon-blue) থেকেই আসছে,
   যাতে টপ মেনু থেকে গেম গ্রিড পর্যন্ত যে কালার প্যালেট আছে তার সাথে পুরোপুরি ম্যাচ করে।
   আগে এখানে আলাদা সবুজ/টিল কালার (footer-green-1/2/dark, footer-teal) ছিল যা মূল থিমের
   সাথে যায়নি — এখন সেগুলো মূল থিমের ভ্যারিয়েবলের সাথে ম্যাপ করে দেওয়া হয়েছে।
   ================================================== */
:root {
    --footer-green-1: var(--bg-card);
    --footer-green-2: var(--bg-dark);
    --footer-green-dark: var(--bg-darker);
    --footer-teal: var(--neon-blue);
}

.footer-info-section {
    padding: 22px 0 0;
}

/* বড় আউটার গ্রিড বক্স — পুরো স্ক্রিন জুড়ে (কোনো সাইড গ্যাপ নেই), নিচে ফুটার/বটম-ন্যাভ ছুঁয়ে যাবে */
.footer-outer-box {
    background: linear-gradient(160deg, var(--footer-green-1) 0%, var(--footer-green-2) 55%, var(--footer-green-dark) 100%);
    border-top: 1px solid var(--glass);
    border-radius: 22px 22px 0 0;
    width: 100%;
    padding: 20px 15px 16px;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.35), inset 0 0 40px rgba(0,0,0,0.2);
    margin-bottom: 0;
}

/* Partner / Live Chat বাটন */
.footer-quick-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.footer-quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(0,0,0,0.2));
    border: 1.5px solid var(--neon-blue);
    border-radius: 50px;
    padding: 13px 14px;
    text-decoration: none;
    color: var(--neon-gold);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.3px;
}
.footer-quick-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--neon-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.footer-section-title {
    color: var(--neon-gold);
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 14px;
}

/* Game Center গ্রিড (শুধু ডিসপ্লে, ক্লিকেবল না) - ৪ + ৩ সারি */
.footer-gc-row {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-gc-row-4 { grid-template-columns: repeat(4, 1fr); }
.footer-gc-row-3 { grid-template-columns: repeat(3, 1fr); margin-bottom: 24px; }

.footer-gc-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: var(--glass);
    border: 1px solid rgba(22, 136, 255, 0.4);
    border-radius: 12px;
    padding: 12px 8px;
    color: var(--text-white);
    font-size: 12.5px;
    font-weight: 700;
    text-align: left;
    cursor: default;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}
.footer-gc-item span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-gc-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    color: var(--neon-blue);
}
svg.footer-gc-icon { display: block; }
.footer-gc-num {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.6px solid currentColor;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

/* লাইসেন্স বক্স + সোশ্যাল আইকন (একই র‍্যাপারের ভিতরে) */
.footer-license-wrap {
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    border: 1px solid var(--neon-gold);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}
.footer-license-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.footer-license-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}
.footer-license-text {
    flex: 1;
    min-width: 0;
}
.footer-license-text p {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.6;
    color: var(--text-white);
}
.footer-license-badge-icon {
    color: var(--neon-gold);
    font-size: 11px;
    margin: 0 2px;
}
.footer-whatsapp-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
}

/* সোশ্যাল আইকন রো (লাইসেন্স বক্সের ভিতরে, বাম-সংলগ্ন) */
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 15px;
}
.footer-social-icon.fb { background: #1877F2; }
.footer-social-icon.tg { background: #29A9EA; }
.footer-social-icon.wa { background: #25D366; }
.footer-social-icon.age {
    background: transparent;
    border: 2px solid #FF3B3B;
    color: #FF3B3B;
    font-weight: 800;
    font-size: 10px;
}

/* Trusted Partners ডিভাইডার */
.footer-partners-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
}
.footer-partners-divider i {
    color: var(--neon-gold);
    font-size: 10px;
}
.footer-partners-divider p {
    margin: 0;
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--neon-gold);
    white-space: nowrap;
    padding: 0 4px;
    position: relative;
}
.footer-partners-divider p::before,
.footer-partners-divider p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    border-top: 1px dashed rgba(245, 185, 66, 0.4);
}
.footer-partners-divider p::before { right: 100%; }
.footer-partners-divider p::after { left: 100%; }

/* ============ TRUSTED PARTNERS: কাস্টম ব্যানার ইমেজ ============ */
.footer-partners-banner {
    width: 100%;
    margin: 0 auto 4px;
    max-width: 92%;
}
.footer-partners-banner img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 0;
}