/* ========================================= */
/* 🔥 AURA INVEST - GLOBAL RESET & FONTS 🔥  */
/* ========================================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
    -webkit-tap-highlight-color: transparent;
}

/* ========================================= */
/* 🔥 PERFECT DASHBOARD BACKGROUND 🔥        */
/* ========================================= */
body { 
    /* 🔥 Sab se Light Shade - Picture full clear aur bright dikhegi 🔥 */
    background-image: linear-gradient(135deg, rgba(2,4,8,0.10), rgba(2,4,8,0.20)), url('background.jpg') !important; background-size: cover !important; background-position: center center !important; background-repeat: no-repeat !important; background-attachment: fixed !important; 
    
    background-repeat: no-repeat !important; 
    background-position: center center !important; 
    background-attachment: fixed !important; 
    background-size: cover !important; 
    background-color: #020408 !important;
    color: #fff; 
    padding-bottom: 110px; 
    overflow-x: hidden; 
    min-height: 100vh; 
    margin: 0;
}
/* ========================================= */
/* 🔥 HEADER & BALANCE PANEL 🔥              */
/* ========================================= */
.top-header { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 16px 20px; position: sticky; top: 0; z-index: 100; 
}
.back-btn { 
    width: 38px; height: 38px; background: rgba(255,255,255,0.05); 
    border-radius: 10px; display: flex; justify-content: center; align-items: center; 
    color: #fff; text-decoration: none; 
}
.top-title h2 { font-size: 18px; font-weight: 700; color: #fff; }
.top-right-placeholder { width: 38px; }

.content-wrap { padding: 10px 16px; max-width: 500px; margin: 0 auto; }

.bal-display { 
    background: #0a0e17; 
    border: 1px solid rgba(255,183,3,0.3); 
    border-radius: 16px; 
    padding: 18px 20px; 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 20px; 
}
.bal-lbl { font-size: 11px; color: #9ca3af; font-weight: 800; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.bal-lbl i { color: #ffb703; font-size: 14px; }
.bal-val { font-size: 20px; font-weight: 800; color: #ffb703; }

/* ========================================= */
/* 🔥 PREMIUM CLASS TABS 🔥                  */
/* ========================================= */
.tabs-navigation {
    display: flex; background: #0a0e17; border-radius: 12px;
    margin-bottom: 24px; padding: 4px; gap: 4px;
}
.tab-nav-btn {
    flex: 1; padding: 12px 0; background: transparent; border: 1px solid transparent;
    border-radius: 10px; color: #6b7280; font-size: 10px; font-weight: 700;
    cursor: pointer; text-transform: uppercase; display: flex; flex-direction: column; 
    align-items: center; gap: 6px;
}
.tab-nav-btn.active {
    color: #ffb703; border: 1px solid rgba(255,183,3,0.4);
}

/* ========================================= */
/* 🔥 PLAN CARDS (EXACT MATCH) 🔥            */
/* ========================================= */
.plan-page-content { display: none; }
.plan-page-content.active-page { display: block; }

.plan-card { 
    background: #0a0e17; 
    border: 1px solid rgba(255,255,255,0.05); 
    border-radius: 16px; 
    padding: 20px; 
    margin-bottom: 20px; 
    position: relative; 
}

.plan-card.standard-tier { border-left: 5px solid #f59e0b; }
.plan-card.high-tier { border-left: 5px solid #06b6d4; }
.plan-card.supreme-tier { border-left: 5px solid #8b5cf6; }

.plan-badge { 
    position: absolute; top: 20px; right: 20px; font-size: 9px; font-weight: 800; 
    padding: 4px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.standard-tier .plan-badge { color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.high-tier .plan-badge { color: #06b6d4; border: 1px solid rgba(6,182,212,0.3); }
.supreme-tier .plan-badge { color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); }

.plan-header { margin-bottom: 20px; }
.plan-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.standard-tier .plan-name i { color: #f59e0b; }

.plan-price { font-size: 26px; font-weight: 800; color: #fff; }
.plan-price span { font-size: 13px; color: #9ca3af; font-weight: 500; }

.plan-specs { 
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; 
    background: #111827; padding: 16px; border-radius: 12px; margin-bottom: 20px; 
}
.spec-item p { font-size: 10px; color: #6b7280; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.spec-item h5 { font-size: 14px; color: #fff; font-weight: 700; }
.spec-item h5.highlight-green { color: #10b981; }

.btn-invest { 
    width: 100%; padding: 14px; border: none; border-radius: 10px; 
    color: #fff; font-weight: 800; font-size: 12px; text-transform: uppercase; 
    display: flex; justify-content: center; align-items: center; gap: 8px; cursor: pointer;
}
.btn-invest.standard-btn { background: linear-gradient(135deg, #f59e0b, #d97706); }
.btn-invest.high-btn { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.btn-invest.supreme-btn { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

/* ========================================= */
/* 🔥 BOTTOM NAV & TOAST 🔥                  */
/* ========================================= */
.bottom-nav { 
    position: fixed; bottom: 0; left: 0; width: 100%; background: #0a0e17; 
    border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-around; 
    padding: 10px 0 14px; z-index: 1000; 
}
.nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #6b7280; font-size: 10px; font-weight: 600; gap: 4px; width: 20%; }
.nav-item i { font-size: 18px; }
.nav-item.active { color: #ffb703; }

.toast { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); padding: 12px 20px; border-radius: 8px; font-size: 12px; font-weight: 700; z-index: 3000; opacity: 0; text-align: center; color: #fff; display: none; }
.toast.show { opacity: 1; display: block; }
