/* ==========================================
   CSS COLOR VARIABLES SYSTEM
   ========================================== */

:root {

    /* --- Main Theme Color --- */
    --header-and-footer-color:#155155;
    --body-background-color: #003e3e;
    --section-background-color:#083f47;
    --section-content-color:#3f7366;
    --bottom-nav-link-color:#23fac8;



    /* --- PRIMARY COLORS --- */
    --color-primary: #eab308;
    --color-primary-alt: #facc15;
    --color-primary-gold: #ffc107;
    
    /* --- ACCENT COLORS --- */
    --color-accent-red: #9fef44;
    --color-accent-green: #10b981;
    --color-accent-blue: #3b82f6;
    --color-accent-orange: #d97706;
    --color-accent-amber: #ca8a04;
    
    /* --- SPECIAL/UNIQUE COLORS --- */
    --color-gold-dark: #7c5e26;
    --color-gold-light: #d4b168;
    --color-dark-accent: #2a343b;
    --color-dark-alt: #232b34;
    --color-border-alt-2: #2d3748;
    --text-light-gray: #b0b3b8;
    --text-muted-gray: #666;
    --text-dark-gray: #555;
    --text-light-secondary: #c4c7cd;
    --color-accent-orange-dark: #d97706;
    
    /* --- DARK BACKGROUNDS (Very Dark) --- */
    --bg-dark-1: #0d0d0d;
    --bg-dark-2: var(--section-background-color);
    --bg-dark-3: #121619;
    --bg-dark-4: #111518;
    
    /* --- DARK BACKGROUNDS (Medium Dark) --- */
    --bg-light-1: var(--section-background-color);
    --bg-light-2: var(--section-background-color);
    --bg-light-3: var(--section-background-color);
    --bg-light-4: var(--section-content-color);
    --bg-light-5: var(--section-background-color);
    
    /* --- SECTION/CARD BACKGROUNDS --- */
    --bg-section: #232a31;
    --bg-section-dark: #2f3b43;
    --bg-section-alt: #232b32;
    --bg-elevated: #181c20;
    
    /* --- BORDER/SEPARATOR COLORS --- */
    --border-dark: #222;
    --border-light: #2a2a2a;
    --border-medium: #2f3840;
    --border-light-alt: #374151;
    --border-input: #2f3b43;
    
    /* --- TEXT COLORS (Light/White) --- */
    --text-white: #ffffff;
    --text-white-alt: #fff;
    --text-black: #000000;
    --text-primary: #d1d5db;
    --text-secondary: #e5e7eb;
    
    /* --- TEXT COLORS (Gray) --- */
    --text-gray-1: #9ca3af;
    --text-gray-2: #6b7280;
    --text-gray-3: #4b5563;
    
    /* --- SPECIAL TEXT COLORS --- */
    --text-link: #ffc107;
    --text-success: #10b981;
    --text-error: #ef4444;
    --text-warning: #facc15;
    
    /* --- TRANSPARENCY/OVERLAY --- */
    --overlay-dark: rgba(0, 0, 0, 0.9);
    --overlay-semi: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(255, 255, 255, 0.1);
    --shadow-semi: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
    
    /* --- GRADIENTS --- */
    --gradient-gold: linear-gradient(to bottom, var(--color-primary), var(--color-accent-amber));
    --gradient-gold-alt: linear-gradient(to right, var(--color-primary-alt), var(--color-accent-orange-dark));
    --gradient-bonus: radial-gradient(circle at center, #1a5d4d 0%, var(--bg-dark-4) 100%);
    --gradient-profile: linear-gradient(180deg, var(--bg-light-1) 0%, var(--bg-light-3) 100%);
    --gradient-card: radial-gradient(circle, var(--color-gold-light) 0%, var(--bg-light-3) 90%);
    --gradient-error: linear-gradient(to bottom, var(--color-accent-red), var(--color-accent-red));
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

/* Body Styles - Consolidated */
body { 
    font-family: 'Roboto', sans-serif;
    background-color: var(--body-background-color); 
    color: var(--text-white);
    padding-bottom: 70px;
    -webkit-tap-highlight-color: transparent;
    top: 0px !important; 
    position: static !important;
}
.hbgc{
    background-color: var(--header-and-footer-color);
}
/* Google Translate Frame Hide */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

/* Tooltip Hide */
.goog-tooltip {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
iframe.skiptranslate {
    display: none !important;
}

/* ==========================================
   HEADER STYLES
   ========================================== */

.header-bg {
    background-color: var(--header-and-footer-color);
    border-bottom: 1px solid var(--border-light);
    padding: 15px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: sticky;
    top: 0;
    z-index: 50;
}

.close-btn {
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: var(--text-gray-1);
}

.custom-hamburger {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    gap: 5px; 
    width: 24px; 
    cursor: pointer;
}

.ham-line { 
    display: block; 
    height: 2px; 
    background-color:#e4d532; 
    border-radius: 4px; 
}
.line-1 { width: 100%; }
.line-2 { width: 100%; }
.line-3 { width: 60%; } 

.brand-icon-box {
    background: white; 
    border-radius: 4px; 
    width: 24px; 
    height: 24px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 6px;
}

/* ==========================================
   TABS STYLES
   ========================================== */

.tabs-container {
    display: flex;
    background-color: var(--bg-section);
    border-bottom: 1px solid var(--border-medium);
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray-1);
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--text-white);
    font-weight: bold;
    border-bottom: 2px solid var(--text-white);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
}

.tab-inactive { 
    background-color: var(--bg-light-5); 
    color: var(--text-white); 
    font-weight: bold; 
    border-radius: 4px 0 0 4px; 
}

.tab-active { 
    background-color: var(--color-primary); 
    color: var(--text-black); 
    font-weight: bold; 
    border-radius: 0 4px 4px 0; 
}

.tab-content { 
    display: none; 
}
.tab-content.active { 
    display: block; 
}

/* ==========================================
   SLIDER & SWIPER
   ========================================== */

.swiper-pagination-bullet {
    width: 15px; 
    height: 3px; 
    background: var(--overlay-light); 
    border-radius: 2px;
    opacity: 1; 
    margin: 0 2px !important; 
    transition: all 0.3s;
}

.swiper-pagination-bullet-active { 
    background: var(--text-white); 
    width: 25px; 
}

/* ==========================================
   CATEGORIES NAVIGATION
   ========================================== */

.sticky-cat-nav {
    position: sticky;
    top: 62px;
    z-index: 40;
    background-color: var(--bg-dark-2);
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #17d4a5;
    border-top: 1px solid #0cd4a1;
    margin-top: 18px;
}

.cat-scroll::-webkit-scrollbar { 
    display: none; 
}

.cat-item { 
    min-width: 70px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 6px; 
    text-decoration: none;
}

.cat-icon-box {
    width: 45px; 
    height: 45px; 
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 20px; 
    color:#ffffff !important; 
    background: var(--section-content-color); 
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.cat-active .cat-icon-box { 
    border: 1px solid var(--text-white); 
    color: var(--text-white); 
    background: var(--section-content-color);
}

.cat-active span {
    color: #23fac8;
    font-weight: bold;
}

/* ==========================================
   GAME CARDS
   ========================================== */

.game-card-new {
    background: var(--bg-light-4); 
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    border: 1px solid var(--border-light);
    position: relative;
}

.game-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 1px;
    position: relative;
}
.flex.items-center.gap-3 {
    padding: 3px;
    border: 1px solid #14a675;
    border-radius: 5px;
}
.game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 10px var(--overlay-semi);
}

.game-title-text {
    font-size: 10px;
    color: #ccc;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-weight: 500;
}

/* ==========================================
   SECTIONS & CARDS
   ========================================== */

.section-card {
    background-color: var(--bg-light-2);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px var(--shadow-light);
}

.section-box,
.dark-card {
    background-color: var(--bg-light-5); 
    border: 1px solid var(--border-medium); 
    border-radius: 8px; 
    padding: 12px 15px; 
    margin-bottom: 15px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title,
.sec-title {
    border-left: 3px solid var(--color-primary-gold); 
    padding-left: 8px; 
    font-size: 14px; 
    color: var(--text-primary); 
    margin-bottom: 10px; 
    font-weight: 500;
}

/* ==========================================
   PROMOTION STYLES
   ========================================== */

.promo-box {
    background-color: var(--bg-light-4);
    border-radius: 4px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 20px;
    border: 1px solid var(--border-medium);
    position: relative;
    cursor: pointer;
}

.promo-dropdown {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0; 
    width: 100%;
    background-color: var(--bg-light-4);
    border: 1px solid var(--border-medium);
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 50;
    max-height: 200px;
    overflow-y: auto;
}

.promo-dropdown.show { 
    display: block; 
}

.promo-item {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-medium);
    color: white;
    transition: background 0.2s;
}

.promo-item:hover { 
    background-color: #2f3b43; 
    color: var(--color-primary-alt); 
}

.promo-item:last-child { 
    border-bottom: none; 
}

/* ==========================================
   PAYMENT METHOD CARDS
   ========================================== */

.pay-card {
    background-color: var(--bg-light-5); 
    border: 1px solid var(--border-medium); 
    border-radius: 6px;
    height: 60px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    cursor: pointer; 
    transition: all 0.2s;
}

.pay-card img { 
    height: 24px; 
    width: auto; 
    margin-bottom: 2px; 
    object-fit: contain; 
}

.pay-card span { 
    font-size: 10px; 
    color: var(--text-gray-1); 
    font-weight: 500; 
}

.pay-card.active { 
    border: 1px solid var(--color-primary-gold); 
    background-color: var(--bg-light-5); 
}

.pay-card.active::after {
    content: '\f00c'; 
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900;
    position: absolute; 
    bottom: 0; 
    right: 0; 
    background: var(--color-primary); 
    color: var(--text-black);
    font-size: 8px; 
    padding: 2px 4px; 
    border-top-left-radius: 6px;
}

/* Phone Card */
.phone-card {
    background-color: var(--color-primary-gold); 
    border-radius: 8px; 
    padding: 12px; 
    display: flex; 
    align-items: center; 
    gap: 8px;
    color: var(--text-white); 
    font-weight: 500; 
    font-size: 14px;
    cursor: pointer; 
    box-shadow: 0 4px 6px var(--shadow-light); 
    transition: 0.2s;
}

.phone-card .check-circle {
    background: #22c55e; 
    border-radius: 50%; 
    width: 20px; 
    height: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border: 2px solid white; 
    flex-shrink: 0;
}

.wallet-radio:checked + .phone-card { 
    border: 2px solid white; 
    transform: scale(1.02); 
}

.wallet-radio:not(:checked) + .phone-card { 
    opacity: 0.8; 
}

/* ==========================================
   BADGES & BUTTONS
   ========================================== */

.badge-offer {
    position: absolute; 
    top: -8px; 
    right: -5px; 
    background-color: #ef4444; 
    color: var(--text-white);
    font-size: 10px; 
    font-weight: bold; 
    padding: 1px 5px; 
    border-radius: 2px; 
    z-index: 10;
}

.badge-offer::before {
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 3px; 
    border-top: 4px solid #ef4444; 
    border-right: 4px solid transparent;
}

.badge {
    position: absolute;
    top: -2px; 
    right: -2px;
    background: #ef4444; 
    color: var(--text-white);
    font-size: 9px; 
    width: 16px; 
    height: 16px;
    border-radius: 50%; 
    border: 1px solid #171e25;
    display: none;
    align-items: center; 
    justify-content: center; 
    font-weight: bold;
}

.btn-vip {
    background: var(--gradient-gold-alt);
    color: #000;
    font-weight: 800;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    display: inline-block;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-white); 
    font-weight: bold; 
    padding: 10px 40px; 
    border-radius: 6px;
    box-shadow: 0 4px 6px var(--shadow-semi); 
    border: 1px solid #facc15; 
    transition: transform 0.1s;
}

.btn-gold:active { 
    transform: scale(0.95); 
}

.sub-btn-outline {
    border: 1px solid var(--color-primary-alt); 
    color: var(--color-primary-alt); 
    text-align: center; 
    padding: 10px;
    font-size: 13px; 
    border-radius: 6px; 
    margin-top: 15px; 
    width: 45%; 
    cursor: pointer; 
    font-weight: 500;
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */

.amt-btn {
    background-color: var(--bg-light-4); 
    border: 1px solid var(--border-medium); 
    color: var(--text-white);
    padding: 10px 0; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: 500;
    transition: 0.2s;
}

.amt-btn.active { 
    border-color: var(--color-primary-gold); 
    color: var(--color-primary-gold); 
}

.input-wrap {
    background-color: var(--bg-light-4); 
    border-radius: 4px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 10px 12px; 
    margin-top: 10px; 
    border: 1px solid var(--border-medium);
}

.input-wrap input {
    background: transparent; 
    border: none; 
    outline: none; 
    text-align: right; 
    color: var(--text-white); 
    font-size: 15px; 
    width: 100%; 
    font-weight: bold;
}

.input-wrap input::placeholder { 
    color: var(--text-gray-3); 
}

.copy-box {
    background-color: var(--bg-light-4);
    border: 1px solid var(--border-light-alt);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 2px;
    margin-top: 5px;
}

.copy-input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 8px;
    font-size: 13px;
    outline: none;
}

.copy-btn {
    background-color: var(--color-primary);
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 4px;
    white-space: nowrap;
}

.copy-icon-btn {
    background-color: var(--color-primary);
    width: 35px; 
    height: 35px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 4px; 
    color: #000;
}

/* ==========================================
   SUBMIT BUTTONS
   ========================================== */

.submit-area {
    
    bottom: 60px; 
    left: 0; 
    width: 100%; 
    background-color: var(--theme-background-color); 
    padding: 10px 15px; 
    z-index: 40;
}

.btn-submit {
    background-color: var(--color-primary-gold); 
    color: var(--text-black); 
    width: 100%; 
    padding: 12px; 
    border-radius: 4px; 
    font-weight: bold;
    font-size: 15px; 
    text-align: center; 
    border: none; 
    margin-top: 15px;
    transition: 0.3s;
}

.btn-submit:disabled { 
    background-color: #4b5563; 
    opacity: 0.5; 
    cursor: not-allowed; 
}
 
/* ==========================================
   BOTTOM NAVIGATION
   ========================================== */

.bottom-nav { 
    background-color: var(--header-and-footer-color); 
    display: flex;
    border-top: 1px solid #222; 
}

.nav-link {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    color: var(--bottom-nav-link-color);
    height: 100%; 
    width: 25%; 
    transition: all 0.2s; 
    border-radius: 50px;
}

/* .nav-link.active {
    background-color: var(--color-primary-gold);
    color: var(--text-black);
    margin: 5px;
    width: 60px;
    height: 60px;
} */
.w-mycustom {
    width: 90%;
    border-radius: 30px;
    border: 1px solid #23fac8;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    bottom: 2px;
    left: 18px;
}

.nav-share {
    background-color: var(--color-primary-gold);
    color: var(--text-black);
    margin: 5px;
    width: 60px;
    height: 60px;
}

.nav-item { 
    color: #6b7280; 
}

.nav-item.active { 
    color: #facc15; 
}

.nav-deposit-icon {
    width: 40px; 
    height: 40px; 
    background-color: var(--bg-light-4); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 4px solid var(--bg-dark-3);
    margin-top: -18px; 
    color: var(--text-white); 
    box-shadow: 0 -2px 5px var(--overlay-semi);
}

.nav-item.active .nav-deposit-icon { 
    color: #facc15; 
}

.nav-item.active .nav-deposit-icon i { 
    filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.5)); 
}

.home-icon-container { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.home-dot {
    position: absolute; 
    bottom: 2px; 
    width: 6px; 
    height: 6px; 
    background-color: #FACC15; 
    border-radius: 50%; 
    z-index: 10;
}

.nav-link.active .home-dot { 
    background-color: #000; 
}

/* ==========================================
   FILTER & GRID STYLES
   ========================================== */

.filter-row,
.filter-bar {
    display: flex; 
    gap: 8px; 
    padding: 0 15px; 
    margin-bottom: 15px; 
    overflow-x: auto;
    justify-content: space-between;
    align-items: center;
    background-color: #1c2227;
    border-bottom: 1px solid #2f3840;
    position: relative;
    z-index: 30;
}

.filter-row::-webkit-scrollbar { 
    display: none; 
}

.filter-btn {
    background-color: var(--bg-light-4); 
    color: var(--text-gray-1); 
    font-size: 11px;
    padding: 6px 12px; 
    border-radius: 4px; 
    border: 1px solid var(--border-light-alt);
    flex: 1; 
    text-align: center; 
    cursor: pointer; 
    white-space: nowrap; 
    min-width: fit-content;
    transition: 0.2s;
}

.filter-btn.active { 
    background-color: var(--color-primary); 
    color: #000; 
    border-color: var(--color-primary); 
    font-weight: bold; 
}

.filter-btn:last-child { 
    border-right: none; 
}

.filter-icon {
    background-color: var(--bg-light-5);
    width: 40px;
    color: #b0b3b8;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-left: 1px solid var(--border-light-alt);
}

.filter-sec-title { 
    font-size: 12px; 
    color: var(--text-gray-1); 
    margin-bottom: 8px; 
    margin-top: 20px; 
}

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

.grid-item {
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 11px;
    transition: 0.2s;
}

.grid-item:active { 
    opacity: 0.7; 
}

/* ==========================================
   ICON STYLES
   ========================================== */

.icon-box {
    width: 45px;
    height: 45px;
    background-color: #e9f3eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    color: #075114;
    font-size: 20px;
    border: 1px solid #2d3748;
    position: relative;
}

/* ==========================================
   VERIFICATION & STATS
   ========================================== */

.verify-box { 
    background-color: #13783f;
    border: 1px solid #3ad114; 
    border-radius: 8px; 
    padding: 15px; 
    margin-bottom: 20px; 
}

.verify-pill { 
    background-color: #2a343b; 
    color: #6b7280; 
    font-size: 11px; 
    padding: 4px 12px; 
    border-radius: 12px; 
    display: inline-block; 
    margin-left: 10px; 
}

.border-green { 
    border-left: 3px solid #10b981; 
    color: #10b981; 
    padding-left: 8px; 
    font-weight: bold; 
    font-size: 13px; 
}

.border-blue { 
    border-left: 3px solid #3b82f6; 
    color: #3b82f6; 
    padding-left: 8px; 
    font-weight: bold; 
    font-size: 13px; 
}

.balance-text { 
    font-size: 28px; 
    color: var(--text-white); 
    font-weight: 400; 
}

.stats-bar { 
    display: flex; 
    background-color: #1c2227; 
    padding: 15px 0; 
    border-bottom: 1px solid #2f3840; 
}

.stat-item { 
    flex: 1; 
    text-align: center; 
    border-right: 1px solid #2f3840; 
}

.stat-item:last-child { 
    border: none; 
}

.stat-item h4 { 
    font-size: 10px; 
    color: #9ca3af; 
    margin-bottom: 5px; 
}

.stat-item p { 
    font-size: 14px; 
    color: #fff; 
    font-weight: bold; 
}

.stat-label { 
    font-size: 11px; 
    color: #9ca3af; 
    margin-bottom: 5px; 
}

.stat-val { 
    font-size: 16px; 
    color: #fff; 
    font-weight: 500; 
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 10px;
    padding: 10px 0;
    background-color: #232a31;
    border-radius: 8px;
    margin-top: 15px;
}

/* ==========================================
   BONUS & CLAIM STYLES
   ========================================== */

.bonus-card {
    background: var(--gradient-bonus);
    position: relative; 
    overflow: hidden; 
    text-align: center; 
    padding: 30px 20px; 
    border-bottom: 1px solid var(--border-medium);
}

.star {
    position: absolute; 
    background: white; 
    border-radius: 50%; 
    opacity: 0.5;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle { 
    0%, 100% { opacity: 0.3; transform: scale(0.8); } 
    50% { opacity: 1; transform: scale(1.2); } 
}

.money-icon { 
    width: 80px; 
    margin: 0 auto 10px; 
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); 
}

.claim-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding-top: 10px;
}

.claim-btn {
    background-color: #7c5e26;
    color: #d4b168;
    font-weight: bold;
    font-size: 12px;
    padding: 6px 20px;
    border-radius: 4px;
    border: 1px solid #d4b168;
}

.pyramid-img {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

/* ==========================================
   TABLE STYLES
   ========================================== */

.table-header,
.tbl-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color: #2f3b43;
    padding: 8px 5px;
    font-size: 11px;
    color: #b0b3b8;
    text-align: center;
    border-bottom: 1px solid #374151;
}

.tbl-header {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 10px 5px;
}

.col-item,
.tbl-col { 
    border-right: 1px solid #374151; 
}

.col-item:last-child,
.tbl-col:last-child { 
    border-right: none; 
}

.data-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 12px 5px;
    font-size: 11px;
    text-align: center;
    border-bottom: 1px solid #232a31;
    align-items: center;
}

.history-item { 
    background-color: #1c2227; 
    padding: 12px 15px; 
    border-bottom: 1px solid #2f3840; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.data-card {
    background-color: #1c2227;
    padding: 15px;
    border-bottom: 1px solid #2f3840;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-label { 
    font-size: 12px; 
    color: #9ca3af; 
}

.data-val { 
    font-size: 14px; 
    color: #fff; 
    font-weight: bold; 
}

/* Status Colors */
.profit-win,
.st-approved { 
    color: #10b981; 
}

.profit-loss,
.st-rejected { 
    color: #ef4444; 
}

.st-pending { 
    color: #facc15; 
}

.via-auto { 
    color: #10b981; 
}

.via-agent { 
    color: #ef4444; 
}

/* ==========================================
   DATE & DROPDOWN STYLES
   ========================================== */

.date-btn {
    background-color: #2a343b;
    color: #b0b3b8;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #374151;
    display: flex; 
    align-items: center; 
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 15px;
    background-color: #2a343b;
    border: 1px solid #374151;
    border-radius: 6px;
    width: 140px;
    box-shadow: 0 4px 15px var(--overlay-semi);
    z-index: 50;
}

.dropdown-menu.show { 
    display: block; 
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #d1d5db;
    font-size: 12px;
    border-bottom: 1px solid #374151;
    cursor: pointer;
}

.dropdown-item:last-child { 
    border-bottom: none; 
}

.dropdown-item:hover { 
    background-color: #374151; 
    color: var(--text-white); 
}

/* ==========================================
   NO DATA & LOADING STATES
   ========================================== */

.no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    opacity: 0.3;
}

.clipboard-icon {
    width: 50px;
    margin-bottom: 10px;
    filter: invert(1);
}

.no-data-icon {
    width: 50px; 
    height: 26px; 
    border-radius: 20px;
    background-color: #2f3b43; 
    position: relative;
    margin: 0 auto 15px auto;
}

.no-data-icon::before {
    content: ''; 
    position: absolute; 
    left: 4px; 
    top: 4px;
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    background-color: #4b5563;
}

.no-data-icon::after {
    content: ''; 
    position: absolute; 
    right: 4px; 
    top: 4px;
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    background-color: #374151;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #2f3840;
    border-top: 4px solid #4b5563;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

/* ==========================================
   MODAL STYLES
   ========================================== */

#errorModal { 
    z-index: 100; 
}

.filter-modal {
    position: fixed; 
    inset: 0; 
    z-index: 100;
    background-color: var(--bg-dark-3);
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
}

.filter-modal.open { 
    transform: translateX(0); 
}

/* ==========================================
   CALENDAR STYLES
   ========================================== */

.flatpickr-calendar {
    z-index: 9999 !important;
    background: var(--bg-light-5) !important;
    border: 1px solid var(--border-light-alt) !important;
    box-shadow: 0 10px 25px var(--overlay-semi) !important;
}

.flatpickr-day.selected {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--text-black) !important;
    font-weight: bold;
}

/* ==========================================
   PROFILE CARD STYLES
   ========================================== */

.profile-card {
    background: var(--gradient-profile);
    border-radius: 8px; 
    overflow: hidden; 
    text-align: center;
    border: 1px solid var(--border-medium); 
    position: relative;
}

.profile-bg {
    height: 90px;
    background: var(--gradient-card);
    opacity: 0.7;
}

.avatar-box {
    width: 70px; 
    height: 70px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: 4px solid #181c20;
    margin: -35px auto 5px auto;
    position: relative; 
    z-index: 10;
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden; 
    cursor: pointer;
}

.avatar-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* Logic-based Info Container */
.info-container {
    background-color: #05672d;
    border: 1px solid #79e725;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

/* List Items */
.list-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px 0; 
    border-bottom: 1px solid #232a31;
}

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

.row-left { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.row-icon { 
    color: #d97706; 
    font-size: 18px; 
    width: 20px; 
    text-align: center; 
}

.row-title { 
    color: #e5e7eb; 
    font-size: 14px; 
    font-weight: 500; 
}

.row-sub { 
    font-size: 11px; 
    color: #FFFFFFFF; 
    margin-top: 2px; 
}

/* Button Styles */
.btn-red {
    background: var(--gradient-error);
    color: var(--text-white); 
    font-weight: bold; 
    font-size: 11px;
    padding: 6px 10px; 
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.pill { 
    font-size: 10px; 
    padding: 2px 10px; 
    border-radius: 12px; 
    margin-top: 5px; 
    display: inline-block; 
    background: #232a31; 
    color: #6b7280; 
}

/* ==========================================
   FORM ELEMENTS (ADVANCED)
   ========================================== */

.input-group {
    margin-bottom: 15px;
}

.input-label {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}

.input-wrapper {
    position: relative;
    background-color: #2f3b43;
    border-radius: 4px;
    border: 1px solid #374151;
}

.custom-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #9ca3af;
    padding: 12px 40px 12px 15px;
    font-size: 14px;
    outline: none;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    cursor: pointer;
}

/* ==========================================
   VALIDATION STYLES
   ========================================== */

.validation-list {
    margin-bottom: 20px;
}

.valid-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.valid-item i {
    font-size: 14px;
}

.valid-item.success {
    color: #10b981;
}

/* ==========================================
   CONFIRM BUTTON
   ========================================== */

.btn-confirm {
    background-color: #eab308;
    color: #000;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    margin-top: 10px;
}

/* ==========================================
   INBOX/NOTIFICATION STYLES
   ========================================== */

.toolbar {
    background-color: #1c2227;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2f3840;
    font-size: 12px;
    color: #6b7280;
}

.gmt-badge {
    border: 1px solid #4b5563;
    border-radius: 4px;
    padding: 1px 4px;
    font-size: 10px;
    margin-right: 10px;
}

/* Message Item */
.msg-item {
    background-color: #232a31;
    padding: 15px;
    border-bottom: 1px solid #2f3840;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.msg-icon {
    width: 35px; 
    height: 35px;
    background-color: #eab308;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--text-white); 
    font-size: 16px;
    flex-shrink: 0;
}

.msg-content { 
    flex: 1; 
}

.msg-title { 
    color: #fff; 
    font-size: 13px; 
    font-weight: bold; 
    margin-bottom: 2px; 
}

.msg-desc { 
    color: #6b7280; 
    font-size: 12px; 
}

.msg-time { 
    color: #6b7280; 
    font-size: 11px; 
    margin-top: 2px; 
}

/* End Text */
.end-text { 
    text-align: center; 
    color: #4b5563; 
    font-size: 12px; 
    margin-top: 20px; 
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.footer-section {
    background-color:var(--body-background-color);
    color: #9ca3af;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    padding: 20px 15px 80px 15px; 
    line-height: 1.4;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Titles */
.ft-title {
    color: #ffc107;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

/* Common Images */
img { 
    max-width: 100%; 
    height: auto; 
}

/* Payment Icons */
.pay-icons {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.pay-icons img {
    width: 100%;
    height: 34px;
    object-fit: contain;
    
}

@media (min-width: 992px) {
    .pay-icons {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
}

/* 2 Column Grid (Responsible + Community) */
.ft-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.ft-icons-row { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
}

.ft-icons-row img { 
    height: 25px; 
    opacity: 0.8; 
}

.social-icons a {
    color: #666;
    font-size: 20px;
    margin-right: 12px;
    transition: 0.3s;
}

.social-icons a:hover { 
    color: #fff; 
}

/* Separator Line */
.ft-separator {
    border-bottom: 1px solid #2a2a2a;
    margin: 15px 0;
}

/* Link Grid (3 Columns) */
.ft-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.ft-link-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-link-item {
    border-left: 2px solid #ffc107;
    padding-left: 8px;
    line-height: 1.2;
}

.ft-link-item a {
    color: #ffc107;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    display: block;
}

/* Gaming License */
.license-container {
    margin-top: 15px;
    margin-bottom: 15px;
}

.license-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.license-row img {
    height: 30px;
    width: auto;
    display: block;
}

/* Partner & App (Grid) */
.partner-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: end;
    margin-top: 5px;
}

.app-btn img {
    height: 35px;
    border: 1px solid #333;
    border-radius: 4px;
}

/* Brand Footer */
.ft-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.bb-logo {
    background: white;
    color: var(--text-black);
    font-weight: 900;
    font-style: italic;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 16px;
}

.brand-text h4 {
    color: #ffc107;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}

.brand-text p {
    font-size: 10px;
    color: #faf5f5;
    margin: 0;
}

/* SEO Text */
.seo-content h3 {
    color: #ffc107;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
}

.seo-content p {
    margin-bottom: 10px;
    text-align: justify;
    color: #c4c7cd;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.fa-sync-alt:active { 
    transform: rotate(180deg); 
    transition: 0.3s; 
}

/* ==========================================
   GUEST NAVIGATION STYLES
   ========================================== */

.guest-bottom-nav {
    background: var(--text-secondary); 
    border-top: 1px solid #ccc;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.guest-nav-lang {
    width: 30%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: bold;
    color: var(--border-light-alt);
    cursor: pointer;
}

.guest-nav-btn {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-white);
    cursor: pointer;
}

.guest-signup { background-color: var(--border-light-alt); } 
.guest-login { background-color: #CA8A04; } 

.flag-circle {
    width: 16px; height: 16px; background: #006a4e; border-radius: 50%; position: relative; display: inline-block;
}

.flag-circle::after {
    content: ''; width: 6px; height: 6px; background: #f42a41; border-radius: 50%; position: absolute; top: 5px; left: 5px;
}


















































