:root {
    /* Colors */
    --bg-main: #06110a;
    --bg-card: #0c2014;
    --primary: #00ff87;
    --primary-dark: #00cc6c;
    --primary-glow: rgba(0, 255, 135, 0.3);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --text-main: #ffffff;
    --text-muted: #8b9d93;
    --glass-bg: rgba(12, 32, 20, 0.65);
    --glass-border: rgba(0, 255, 135, 0.15);
    
    /* Layout */
    --header-h: 60px;
    --bottom-nav-h: 70px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

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

/* Utilities */
.text-emerald { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.mb-5{margin-bottom: 5px;} .mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mb-10{margin-bottom: 10px;} .mb-20{margin-bottom: 20px;} .mt-15 {margin-top: 15px;}
.w-100 { width: 100%; }
.flex-col { display: flex; flex-direction: column; align-items: center; }

/* Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-emerald {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-emerald:hover { background: var(--primary-dark); }
.btn-outline-emerald {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-gold {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* Header */
.top-header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-h);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 15px; z-index: 100;
}
.header-left { display: flex; align-items: center; gap: 15px; }
.menu-toggle { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; }
.logo { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.header-right { display: flex; gap: 10px; align-items: center; }
.wallet-balance {
    background: rgba(0,0,0,0.4); padding: 5px 12px;
    border-radius: 20px; border: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem;
}

/* ======================================================== */
/* Header Notification Bell & Badge Fix                     */
/* ======================================================== */

.notification-btn {
    position: relative !important; /* ব্যাজটিকে বেলের উপর ভাসানোর জন্য */
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.3rem !important;
    cursor: pointer;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-btn .badge {
    position: absolute !important;
    top: -2px !important; /* বেলের একটু উপরে */
    right: -4px !important; /* বেলের একটু ডানপাশে */
    background: #ff2a2a !important; /* লাল অ্যালার্ট কালার */
    color: #ffffff !important;
    font-size: 0.6rem !important;
    font-weight: bold !important;
    padding: 2px 5px !important;
    border-radius: 10px !important; /* গোল বা পিল শেপ */
    min-width: 15px !important;
    text-align: center !important;
    border: 2px solid #0a1a12 !important; /* চারিপাশে ডার্ক কাটআউট ইফেক্ট */
    line-height: 1 !important;
    box-shadow: 0 2px 5px rgba(255, 42, 42, 0.4) !important;
}

/* ======================================================== */
/* MY BETS HISTORY CARDS                                    */
/* ======================================================== */

.bet-history-card {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bet-history-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.support-tabs-container {
    display: flex !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 10px !important;
    padding: 4px !important;
    border: 1px solid rgba(0, 255, 135, 0.15) !important;
    gap: 5px !important;
    width: 100% !important;
}

.support-tab-btn {
    flex: 1 !important;
    padding: 12px 10px !important;
    border: none !important;
    background: transparent !important;
    color: #8b9d93 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

/* Active State - Neon Green */
.support-tab-btn.active {
    background: #00ff87 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 255, 135, 0.3) !important;
}
/* ======================================================== */
/* END MY BETS HISTORY CARDS                                */
/* ======================================================== */

/* ======================================================== */
/* FULLSCREEN GAME PLAY (IFRAME) STYLES                     */
/* ======================================================== */

.game-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #08140e;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.game-title-info {
    text-align: center;
    flex: 1;
}

.game-iframe-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 55px); /* 헤ডার বাদ দিয়ে বাকি পুরো স্ক্রিন */
    background: #000000;
    overflow: hidden;
}

#gameFrame {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #000;
}

.loader-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
}
/* END FULLSCREEN GAME PLAY (IFRAME) STYLES                     */

/* Sidebar Drawer */
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    z-index: 101; opacity: 0; visibility: hidden; transition: var(--transition);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
    background: var(--bg-card); z-index: 102;
    transition: var(--transition); overflow-y: auto;
    border-right: 1px solid var(--glass-border);
}
.sidebar.active { left: 0; }
.sidebar-profile {
    padding: 30px 20px; background: linear-gradient(180deg, var(--glass-bg), transparent);
    display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--glass-border);
}
.sidebar-profile .avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary); color: #000;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.menu-section { padding: 15px 0; }
.menu-section span {
    display: block; padding: 0 20px 10px; font-size: 0.8rem;
    color: var(--text-muted); font-weight: 600; letter-spacing: 1px;
}
.menu-item {
    display: flex; align-items: center; gap: 15px;
    padding: 12px 20px; color: #fff; transition: var(--transition);
}
.menu-item:hover { background: rgba(0, 255, 135, 0.1); color: var(--primary); }

/* Main Content & Views */
#app-content { padding-top: calc(var(--header-h) + 15px); padding-inline: 15px; }
.view-section { display: none; animation: fadeIn 0.3s ease; }
.view-section.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Home Components */
.hero-swiper { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.hero-slide {
    padding: 40px 20px; border-radius: var(--radius-lg);
    display: flex; align-items: center; min-height: 180px;
}
.hero-content h2 { font-size: 1.5rem; margin-bottom: 5px; }
.hero-content p { color: var(--text-muted); margin-bottom: 15px; font-size: 0.9rem; }

.announcement-bar {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-card); padding: 8px 15px; border-radius: 8px; margin-bottom: 20px; font-size: 0.85rem;
}

.categories-scroll {
    display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 20px;
    scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-card {
    min-width: 80px; background: var(--bg-card); padding: 15px 10px;
    border-radius: var(--radius-md); display: flex; flex-direction: column;
    align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500;
    border: 1px solid transparent; transition: var(--transition);
}
.category-card:hover { border-color: var(--primary); background: var(--glass-bg); }

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.section-header h3 { font-size: 1.1rem; font-weight: 600; }
.section-header a { font-size: 0.85rem; color: var(--primary); }

.sports-cards-horizontal { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.sports-card { min-width: 280px; padding: 15px; border-radius: var(--radius-md); }
.match-info { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.8rem; }
.live-badge { background: #ff2a2a; color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.teams .team { display: flex; justify-content: space-between; font-weight: 500; margin-bottom: 5px; }
.odds-row { display: flex; gap: 10px; margin-top: 15px; }
.odd-btn {
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 8px; border-radius: 6px; display: flex; justify-content: space-between;
    font-size: 0.85rem; transition: var(--transition); cursor: pointer;
}
.odd-btn span { color: var(--primary); font-weight: 600; }
.odd-btn:hover { background: var(--primary); color: #000; }
.odd-btn:hover span { color: #000; }

.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.game-card { text-align: center; font-size: 0.85rem; font-weight: 500; }
.game-thumb {
    width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); margin-bottom: 8px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.play-icon {
    font-size: 2rem; color: #fff; opacity: 0; transform: scale(0.5); transition: var(--transition);
}
.game-card:hover .play-icon { opacity: 1; transform: scale(1); }

.footer-promo { padding: 20px; border-radius: var(--radius-lg); display: flex; justify-content: space-between; align-items: center; }
.footer-promo h4 { font-size: 1.1rem; margin-bottom: 5px; }
.footer-promo p { font-size: 0.85rem; color: var(--text-muted); }

/* Sports View */
.sports-tabs { display: flex; background: var(--bg-card); border-radius: 8px; padding: 5px; margin-bottom: 15px; }
.sports-tabs button {
    flex: 1; background: none; border: none; color: var(--text-muted); padding: 10px;
    border-radius: 6px; font-weight: 600; transition: var(--transition); cursor: pointer;
}
.sports-tabs button.active { background: var(--glass-bg); color: var(--primary); }
.sports-filters { display: flex; gap: 10px; overflow-x: auto; margin-bottom: 20px; scrollbar-width: none; }
.filter-pill {
    padding: 8px 16px; background: var(--bg-card); border-radius: 20px; font-size: 0.85rem;
    white-space: nowrap; border: 1px solid transparent; cursor: pointer;
}
.filter-pill.active { background: var(--primary-glow); border-color: var(--primary); color: var(--primary); }
.sports-list-item { padding: 15px; border-radius: var(--radius-md); margin-bottom: 15px; }
.live-dot { font-size: 0.5rem; animation: pulse 1s infinite; margin-right: 5px; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

/* Wallet View */
.wallet-header { padding: 25px; border-radius: var(--radius-lg); text-align: center; }
.wallet-header h2 { font-size: 2.5rem; margin: 10px 0 20px; text-shadow: 0 0 20px var(--primary-glow); }
.wallet-actions { display: flex; gap: 15px; justify-content: center; }
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.payment-card {
    padding: 20px; border-radius: var(--radius-md); display: flex; flex-direction: column;
    align-items: center; gap: 10px; font-weight: 600; cursor: pointer;
}
.payment-card i { font-size: 2rem; }
.payment-card:hover { border-color: var(--primary); }

/* Bottom Nav */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%; height: var(--bottom-nav-h);
    display: flex; justify-content: space-around; align-items: center;
    border-top: 1px solid var(--glass-border); z-index: 100;
}
.nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    color: var(--text-muted); font-size: 0.75rem; transition: var(--transition);
}
.nav-item i { font-size: 1.2rem; }
.nav-item.active { color: var(--primary); }
.nav-item.active i { text-shadow: 0 0 10px var(--primary-glow); }
.center-deposit { position: relative; top: -20px; }
.deposit-btn {
    width: 60px; height: 60px; background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #000;
    font-size: 1.5rem; box-shadow: 0 5px 20px var(--primary-glow); border: 4px solid var(--bg-main);
}

/* Modals */
.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-content {
    width: 100%; max-width: 400px; padding: 30px; border-radius: var(--radius-lg);
    position: relative; transform: scale(0.9); transition: var(--transition);
}
.modal.active .modal-content { transform: scale(1); }
.close-modal {
    position: absolute; top: 15px; right: 20px; font-size: 1.5rem;
    color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.close-modal:hover { color: #fff; }
.modal-header { margin-bottom: 25px; text-align: center; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.form-control {
    width: 100%; padding: 12px 15px; background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
    border-radius: 8px; color: #fff; outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 10px var(--primary-glow); }
.form-options { display: flex; justify-content: space-between; font-size: 0.85rem; }
.promo-modal-bg { background: linear-gradient(135deg, #112b1d, #06110a); border: 1px solid var(--gold); }

/* Floating Widgets */
.floating-widgets { position: fixed; right: 15px; bottom: 90px; display: flex; flex-direction: column; gap: 10px; z-index: 90; }
.widget-btn {
    width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; border: 1px solid var(--glass-border); cursor: pointer;
}


/*  Game Tab  */
/* Active Tab Style */
.category-card.active {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
}

/* Grid Systems */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

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

/* Mini Sports Card for 2-column */
.sports-card-mini {
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sports-card-mini .teams .team {
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}
.sports-card-mini .odds-row {
    margin-top: 10px;
    gap: 5px;
}
.sports-card-mini .odd-btn {
    padding: 5px;
    font-size: 0.75rem;
}

/* Provider/Casino Card for 3-column */
.provider-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.provider-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}
.provider-card:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
}
.provider-card:hover span {
    color: var(--primary);
}


/* -- Category Item page CSS -- */
/* Category Pages */
.category-header {
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}
.header-title {
    display: flex;
    align-items: center;
    gap: 15px;
}
.back-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Search Box */
.search-box {
    position: relative;
    width: 100%;
}
.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.search-input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    outline: none;
}
.search-input:focus {
    border-color: var(--primary);
}

/* Scrollable Provider Filters */
.provider-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}
.provider-filters::-webkit-scrollbar {
    display: none;
}
.filter-btn {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-muted);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

/* Live Dealer Card */
.live-dealer-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.stream-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}
.stream-thumb .live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}
.dealer-info {
    padding: 10px;
}
.dealer-info h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.dealer-info span {
    font-size: 0.75rem;
    font-weight: 600;
}
/* -- Category Item page CSS -- */

/* --- User Dashboard / Profile --- */

/* Header */
.profile-header {
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    border: 2px solid var(--primary);
}
.vip-badge-mini {
    position: absolute;
    bottom: -5px;
    background: #111;
    border: 1px solid var(--gold);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
}
.user-details h2 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.user-details p {
    font-size: 0.8rem;
}
.edit-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.edit-btn:hover {
    background: var(--primary);
    color: #000;
}

/* Balances */
.finance-cards {
    display: flex;
    gap: 15px;
}
.finance-card {
    flex: 1;
    padding: 15px;
    border-radius: var(--radius-md);
}
.finance-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.finance-card h3 {
    font-size: 1.3rem;
}
.main-wallet {
    border-left: 3px solid var(--primary);
}
.bonus-wallet {
    border-left: 3px solid var(--gold);
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.action-btn {
    padding: 15px 5px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.action-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}
.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.action-btn:hover .icon-circle {
    background: var(--primary-glow);
}

/* VIP Progress */
.vip-progress-card {
    padding: 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.vip-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}
.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #ffaa00);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Menu List */
.menu-list-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-list-item {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.item-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 500;
}
.item-left i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}
.item-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge-new {
    background: #ff2a2a;
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}
.msg-count {
    background: var(--primary);
    color: #000;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Logout Button */
.btn-logout {
    background: rgba(255, 42, 42, 0.1);
    color: #ff2a2a;
    border: 1px solid #ff2a2a;
}
.btn-logout:hover {
    background: #ff2a2a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
}
/* --- End User Dashboard / Profile --- */

/* --- Cashier / Wallet Page --- */
.cashier-tabs {
    display: flex;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 5px;
}
.cashier-tabs .tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.cashier-tabs .tab-btn.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.cashier-block {
    padding: 15px;
    border-radius: var(--radius-md);
}
.block-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}
.border-left-indicator {
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

/* Method Selection */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.method-card {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.method-card i { font-size: 1.5rem; }
.method-card span { font-size: 0.75rem; font-weight: 600; text-align: center; }
.method-card.active {
    background: rgba(0, 255, 135, 0.1);
    border-color: var(--primary);
}

/* Channel Selection */
.channel-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-top: 12px; /* FIX: ব্যাজটিকে দৃশ্যমান করার জন্য উপরের স্পেস */
    padding-bottom: 5px;
}
.channel-grid::-webkit-scrollbar { display: none; }
.channel-card {
    flex: 0 0 auto;
    padding: 10px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
}
.channel-card.active {
    background: rgba(0, 255, 135, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}
.bonus-tag {
    position: absolute;
    top: -10px;
    right: -5px;
    background: #ff5722;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 5; /* FIX: ব্যাজটি যাতে কার্ডের বর্ডারের নিচে না পড়ে যায় */
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Alert */
.info-alert {
    margin: 15px 0px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    border-left: 3px solid var(--gold);
}

/* Amount Selection */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.amount-btn {
    padding: 12px 5px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.amount-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 5px;
}
.amount-input-wrapper:focus-within {
    border-color: var(--primary);
}
.currency-symbol {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}
.amount-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
}
.amount-input-wrapper input::-webkit-outer-spin-button,
.amount-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.clear-input {
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
}
.clear-input:hover { color: #fff; }
/* --- Cashier / Wallet Page --- */

/* --- Transaction History --- */

.tx-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tx-item {
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
    animation: fadeIn 0.3s ease;
}

/* Deposit Left Border & Icon Color */
.tx-item.deposit {
    border-left-color: var(--primary);
}

/* Withdraw Left Border */
.tx-item.withdraw {
    border-left-color: var(--gold);
}

.tx-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tx-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.tx-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.tx-details p {
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.tx-details small {
    font-size: 0.7rem;
    display: block;
}

.text-right {
    text-align: right;
}

.tx-info-right h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Status Badges */
.status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    display: inline-block;
}

.status-pending {
    background: rgba(255, 170, 0, 0.15);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.status-approved {
    background: rgba(0, 255, 135, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.status-rejected {
    background: rgba(255, 42, 42, 0.15);
    color: #ff2a2a;
    border: 1px solid #ff2a2a;
}
/* --- Transaction History --- */

/* --- Security Center --- */
.security-level-card {
    padding: 20px;
    border-radius: var(--radius-md);
}

.level-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shield-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.level-info h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.level-info p {
    font-size: 0.75rem;
    line-height: 1.3;
}

.status-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.text-danger {
    color: #ff2a2a !important;
}

/* Reusing menu-list-item from Profile page, just ensuring the flex layout is intact */
.menu-list-item .item-left {
    align-items: flex-start;
}

.menu-list-item .item-left i {
    margin-top: 3px;
    font-size: 1.3rem;
}
/* --- Security Center --- */

/* --- Refer & Earn Custom Styles --- */

.referral-banner {
    padding: 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(12, 32, 20, 0.9), rgba(0, 255, 135, 0.1));
    border: 1px solid var(--glass-border);
}

.banner-info h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-info p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.step-content {
    display: flex;
    align-items: center;
    color: var(--text-main);
}


/* --- Messages / Inbox Styles --- */

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

.msg-item {
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.msg-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Unread State Custom Style */
.msg-item.unread {
    background: rgba(0, 255, 135, 0.03);
    border-left-color: var(--primary);
}
.msg-item.unread h4 {
    font-weight: 600;
    color: #fff;
}

.msg-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 90%;
}

.msg-unread-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--primary);
}

.msg-icon-circle {
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.msg-details {
    overflow: hidden;
}

.msg-details h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msg-details p {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.msg-details small {
    font-size: 0.68rem;
    display: block;
}


/* ======================================================== */
/* 24/7 SUPPORT CARDS & FAQ ACCORDION STYLES                */
/* ======================================================== */

/* 1. Grid Setup for Support Cards */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* 2. Support Card Design */
.support-card {
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center aligns the icon and text */
    cursor: pointer;
    transition: var(--transition);
}

.support-card:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 135, 0.05);
}

.support-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 8px 0 3px; /* Spacing between icon and title */
}

.support-card p {
    font-size: 0.75rem;
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* 3. Circular Glowing Icon Boxes */
.support-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

/* Neon Glow Colors */
.chat-glow { background: #00ff87; color: #000; box-shadow: 0 0 15px rgba(0, 255, 135, 0.4); }
.telegram-glow { background: #0088cc; box-shadow: 0 0 15px rgba(0, 136, 204, 0.4); }
.whatsapp-glow { background: #25d366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
.email-glow { background: #ffaa00; color: #000; box-shadow: 0 0 15px rgba(255, 170, 0, 0.4); }

/* 4. Tags (Online / Reply Time) */
.online-tag {
    font-size: 0.65rem;
    font-weight: bold;
    color: var(--primary);
    background: rgba(0, 255, 135, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reply-tag {
    font-size: 0.65rem;
    font-weight: bold;
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #ffaa00;
}

.live-dot {
    font-size: 0.4rem;
    animation: pulse 1.5s infinite;
}

/* 5. FAQ Accordion Styles */
.faq-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-question i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

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

.faq-answer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
}

/* Open State for FAQ */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 150px; /* Allows the answer text to slide down */
}

/* ======================================================== */
/* BET SLIP DRAWER STYLES (FIXED ALIGNMENT)                 */
/* ======================================================== */

.bet-slip-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    z-index: 9998; 
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.bet-slip-overlay.active { opacity: 1; visibility: visible; }

/* Fixed Drawer width and transition */
.bet-slip-drawer {
    position: fixed; top: 0; right: -100%; /* Fully hidden by default */
    width: 340px; /* Slightly wider for better fit */
    max-width: 85vw; /* Respect mobile viewports */
    height: 100vh; /* Full viewport height */
    background: var(--bg-main); 
    z-index: 9999; 
    transition: right 0.3s ease-in-out;
    display: flex; flex-direction: column;
    border-left: 1px solid var(--glass-border);
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    overflow: hidden; /* Prevent overflow issues */
}
.bet-slip-drawer.active { right: 0; } /* Snaps exactly to the right edge */

.bet-slip-header {
    padding: 15px 20px; border-bottom: 1px solid var(--glass-border);
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0,0.3);
}
.receipt-icon {
    width: 35px; height: 35px; background: rgba(0,255,135,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.close-slip-btn {
    background: none; border: none; color: var(--text-muted);
    font-size: 1.2rem; cursor: pointer; transition: color 0.2s;
}
.close-slip-btn:hover { color: #fff; }

.bet-slip-body {
    flex: 1; overflow-y: auto; padding: 15px;
}

/* Ensuring bet card elements align correctly */
.bet-selection-card {
    padding: 15px; border-radius: 8px; border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.02);
}

.stake-input-group {
    position: relative; display: flex; align-items: center; width: 100%;
}
.stake-input-group .currency-label {
    position: absolute; left: 15px; color: var(--primary); font-weight: bold; font-size: 1.1rem;
}
.stake-input-group input {
    padding-left: 35px; font-size: 1.1rem; font-weight: bold; background: rgba(0,0,0,0.5); width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't push width out */
}

.quick-stakes {
    display: flex; gap: 8px; justify-content: space-between; width: 100%;
}
.qs-btn {
    flex: 1; padding: 6px 0; background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border); color: #fff; border-radius: 4px;
    font-size: 0.75rem; cursor: pointer; transition: var(--transition);
    text-align: center;
}
.qs-btn:hover { background: var(--primary); color: #000; border-color: var(--primary); }

.bet-slip-footer {
    padding: 20px; border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5);
    padding-bottom: env(safe-area-inset-bottom, 20px); /* iPhone home indicator fix */
}

.remove-bet {
    background: rgba(255, 255, 255, 0.05); /* হালকা ডার্ক ব্যাকগ্রাউন্ড */
    border: 1px solid rgba(255, 255, 255, 0.1); /* চারিপাশে হালকা বর্ডার */
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    border-radius: 6px; /* সুন্দর রাউন্ড শেপ */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    margin-bottom: 8px; /* অডস (1.85) থেকে একটু উপরে রাখার জন্য */
}

/* মাউস নিলে বা ট্যাপ করলে লাল রঙের ইফেক্ট আসবে */
.remove-bet:hover {
    background: rgba(255, 42, 42, 0.15); 
    border-color: rgba(255, 42, 42, 0.3);
    color: #ff2a2a !important; 
    transform: scale(1.05); /* হালকা বড় হবে */
}

/* ক্লিক করার সময় হালকা ছোট হবে */
.remove-bet:active {
    transform: scale(0.95);
}
/* ======================================================== */
/* END BET SLIP DRAWER STYLES                               */
/* ======================================================== */

/* ======================================================== */
/* ISOLATED SUPPORT & TICKETS STYLES (NO BLEED FIX)         */
/* ======================================================== */
.sp-tab-container {
    display: flex !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 10px !important;
    padding: 4px !important;
    border: 1px solid rgba(0, 255, 135, 0.15) !important;
    gap: 5px !important;
    width: 100% !important;
}

/* ইনঅ্যাক্টিভ ট্যাবের কালার ফিক্স */
.sp-tab-btn {
    flex: 1 !important;
    padding: 12px 10px !important;
    border: none !important;
    background: transparent !important; /* গ্লোবাল গ্রিন রুল ব্রেক করার জন্য */
    color: #8b9d93 !important; 
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

/* শুধুমাত্র একটি বাটন অ্যাক্টিভ সবুজ দেখাবে */
.sp-tab-btn.active {
    background: #00ff87 !important; 
    color: #000000 !important; 
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 255, 135, 0.3) !important;
}

.sp-badge-count {
    background: #ff2a2a !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    padding: 1px 6px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    margin-left: 5px !important;
    display: inline-block !important;
}

.sp-tab-pane {
    animation: fadeIn 0.3s ease;
}

/* Ticket Chat Bubble boxes */
.ticket-msg-box {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
}
.user-msg {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 95%;
    align-self: flex-start;
}
.agent-msg {
    background: rgba(0, 255, 135, 0.04);
    border: 1px solid rgba(0, 255, 135, 0.15);
    width: 95%;
    align-self: flex-end;
}
.msg-sender {
    font-size: 0.75rem;
    text-transform: uppercase;
}
/* 24/7 Support end */

/* ======================================================== */
/* PROMOTIONS & BONUSES STYLES                              */
/* ======================================================== */

.promo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.promo-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 135, 0.1);
}

.promo-banner {
    padding: 25px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.promo-banner p {
    font-size: 0.85rem;
    color: #e0e0e0;
    line-height: 1.4;
    max-width: 85%;
}

.promo-details {
    padding: 15px;
    background: var(--bg-card);
}

.promo-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.promo-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
/* ======================================================== */
/* END PROMOTIONS & BONUSES STYLES                              */
/* ======================================================== */

/* ======================================================== */
/* VIP CLUB PREMIUM STYLES                                  */
/* ======================================================== */

.align-start {
    align-items: flex-start;
}
.flex-center {
    display: flex;
    align-items: center;
}

.vip-premium-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vip-premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.15);
}

.vip-benefits-details {
    font-size: 0.85rem;
}
.vip-benefits-details .flex-between {
    padding: 4px 0;
}
/* VIP Current Tier Badge */
.vip-current-badge {
    background: #ffd700 !important; /* Gold Background */
    color: #000000 !important; /* Black Text */
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 12px !important;
    margin-left: 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4) !important;
}

/* VIP Rules Modal Styles */
.rules-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
}
.rules-section p {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 6px;
    border-left: 2px solid rgba(0, 255, 135, 0.3);
}
/* ======================================================== */
/* END VIP CLUB PREMIUM STYLES                                  */
/* ======================================================== */

/* ======================================================== */
/* VIP INFO & DETAILS STYLES                                */
/* ======================================================== */

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Horizontal Scroll for VIP Tiers */
.tier-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 15px 20px 15px;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tier-scroll-container::-webkit-scrollbar {
    display: none;
}

.tier-info-card {
    min-width: 140px;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    scroll-snap-align: center;
    background: rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.tier-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.req-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 8px 0;
}

.tier-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* VIP Compare Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    padding: 0px;
}

.vip-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    min-width: 500px; /* Forces scroll on small screens */
}

.vip-compare-table th, .vip-compare-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.vip-compare-table th {
    background: rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.vip-compare-table th:first-child, .vip-compare-table td:first-child {
    text-align: left;
    background: rgba(0, 255, 135, 0.02);
    font-weight: 500;
}

.vip-compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
/* ১. ডানপাশ কেটে যাওয়ার ফিক্স (শেষ কার্ডের ডানে জায়গা তৈরি করা) */
.tier-info-card:last-child {
    margin-right: 15px !important; 
}

/* ২. টেবিলের লেফট কলাম (First Column) ফিক্সড/স্টিকি করা */
.vip-compare-table th:first-child, 
.vip-compare-table td:first-child {
    position: sticky;
    left: 0;
    /* টেক্সট যাতে নিচে দেখা না যায় সেজন্য সলিড ডার্ক ব্যাকগ্রাউন্ড দিতে হবে */
    background: #08140e !important; 
    z-index: 2;
    border-right: 1px solid rgba(0, 255, 135, 0.3) !important; /* কলামের ডানে হালকা বর্ডার */
}

/* হেডারের প্রথম সেলের (Benefits / Tier) জেনো অন্যান্য সেলের উপরে থাকে */
.vip-compare-table th:first-child {
    z-index: 3;
    background: #0d2116 !important; 
}
/* ======================================================== */
/* END VIP INFO & DETAILS STYLES                            */
/* ======================================================== */


/* --- Payment Details Page --- */
.step-guide {
    display: flex;
    flex-direction: column;
}
.step-item {
    display: flex;
    gap: 15px;
}
.step-number {
    width: 25px;
    height: 25px;
    background: rgba(0, 255, 135, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}
.copy-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px dashed var(--glass-border);
    padding: 10px 15px;
    border-radius: 8px;
}
.copy-box .text-main {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.copy-btn {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.copy-btn:hover {
    background: var(--primary);
    color: #000;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.font-bold { font-weight: bold; }

.summary-box {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}
/* --- Payment Details Page --- */


/* Toast */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--bg-card); border-left: 4px solid var(--primary); padding: 15px 20px; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); animation: slideInRight 0.3s forwards; color: #fff; }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Desktop Adaptive */
@media (min-width: 768px) {
    #app-content { max-width: 500px; margin: 0 auto; border-left: 1px solid var(--glass-border); border-right: 1px solid var(--glass-border); min-height: 100vh; background: var(--bg-card); }
    .bottom-nav { max-width: 500px; left: 50%; transform: translateX(-50%); }
    .top-header { max-width: 500px; left: 50%; transform: translateX(-50%); }
    .sidebar { left: calc(50% - 250px - 280px); }
    .floating-widgets { right: calc(50% - 250px - 60px); }
}

/* ======================================================== */
/* 100% FULLSCREEN GAME PLAY FIX                            */
/* ======================================================== */

#view-game {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important; /* একদম পুরো স্ক্রিন */
    background: #000000 !important;
    z-index: 99999 !important; /* সবার উপরে থাকবে */
    padding: 0 !important; 
    margin: 0 !important;
    box-sizing: border-box !important;
}

.game-iframe-container {
    width: 100% !important;
    height: calc(100vh - 55px) !important; /* হেডারের সাইজ বাদ দিয়ে বাকি পুরোটা */
    background: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#gameFrame {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}