<style>

    /* 1. Dashboard Variables & Base */

    :root {

        --bg-dark: #070b13;

        --glass-bg: rgba(255, 255, 255, 0.03);

        --glass-border: rgba(255, 255, 255, 0.08);

        --neon-blue: #00d2ff;

        --neon-green: #39ff14;

        --neon-purple: #9d50bb;

    }



    .custom-dashboard { padding-top: 20px; padding-bottom: 90px; background: var(--bg-dark); }



    /* 2. FORCE HIDE TOP ELEMENTS (Dash, Trade, Logs & Hamburger) */

    @media (max-width: 991px) {

        .sidebar-open-btn, 

        .header-trigger, 

        .sidebar-menu-show-hide, 

        .sidebar-menu,

        header .nav-right, 

        header .navbar-nav,

        header .menu-right,

        .navbar-collapse,

        .header-short-menu { 

            display: none !important; 

        }

        

        /* Notification Bars Hide */

        .custom--card:has(.la-bell), 

        #allow-notification-bar,

        [class*="notification-bar"] { 

            display: none !important; 

        }

    }



    /* 3. Stats Grid & Glow Cards */

    .stats-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

        gap: 20px;

        margin-top: 10px;

    }



    .stat-card-glow {

        background: var(--glass-bg);

        border: 1px solid var(--glass-border);

        border-radius: 15px;

        padding: 22px;

        position: relative;

        overflow: hidden;

        transition: all 0.4s ease;

        display: flex;

        align-items: center;

        gap: 15px;

        backdrop-filter: blur(10px);

    }



    .stat-card-glow.blue { border-left: 3px solid var(--neon-blue); }

    .stat-card-glow.green { border-left: 3px solid var(--neon-green); }

    .stat-card-glow.red { border-left: 3px solid #ff4b2b; }

    .stat-card-glow.purple { border-left: 3px solid var(--neon-purple); }



    .stat-card-glow:hover {

        transform: translateY(-5px);

        background: rgba(255, 255, 255, 0.06);

    }



    .icon-wrap {

        width: 48px; height: 48px;

        border-radius: 12px;

        display: flex; align-items: center; justify-content: center;

        font-size: 22px;

        background: rgba(0, 0, 0, 0.2);

    }

/* PC / Desktop screens par mobile bottom menu hide karne ke liye */
@media (min-width: 768px) {
    .app-nav, .mobile-nav, .bottom-nav, .navigation-bar {
        display: none !important;
    }
}

    .blue .icon-wrap { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

    .green .icon-wrap { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }



    .stat-info .label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin: 0; }

    .stat-info .amount { font-size: 20px; font-weight: 700; color: #fff; margin: 0; }



    /* 4. Modern Table Styling */

    .modern-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }

    .modern-table tbody tr { background: rgba(255, 255, 255, 0.02); transition: 0.3s; }

    .modern-table td { padding: 12px 15px; color: #ced4da; border: none; }

    .modern-table td:first-child { border-radius: 10px 0 0 10px; }

    .modern-table td:last-child { border-radius: 0 10px 10px 0; }



    /* 5. Mobile Responsive Fixes */

    @media (max-width: 991px) {

        .trade-grid { display: flex; flex-direction: column; height: auto; }

        #tv-chart-container { height: 380px !important; }

        .market-info-header { flex-wrap: wrap; gap: 10px; padding: 10px; }

        .market-info-header > div { flex: 1 1 45%; }

        

        /* Bottom Navigation Bar Fix */

        .mobile-nav-bar {

            position: fixed; bottom: 0; left: 0; width: 100%;

            height: 65px; background: #0d121d;

            border-top: 1px solid var(--glass-border);

            display: flex; justify-content: space-around; align-items: center;

            z-index: 9999; padding-bottom: env(safe-area-inset-bottom);

        }

    }

</style>
/* Profile Layout Fix */
.user-info-container {
    display: flex;
    flex-direction: column; /* Mobile par column layout */
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}

.user-name-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.kyc-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

/* Status Colors */
.status-verified { background: rgba(57, 255, 20, 0.1); border: 1px solid #39ff14; color: #39ff14; }
.status-pending { background: rgba(0, 210, 255, 0.1); border: 1px solid #00d2ff; color: #00d2ff; }
.status-unverified { background: rgba(255, 75, 43, 0.1); border: 1px solid #ff4b2b; color: #ff4b2b; }
/* Bottom logo aur mobile navigation bar ko mukammal hide karne ke liye */
.app-nav, 
.bottom-nav, 
.mobile-nav-menu, 
.mobile-version {
    display: none !important;
}
/* Dashboard top-right Verify button ko hide karne ke liye */
a[href*="kyc"], 
.badge--warning[href*="verify"],
a.badge:contains("VERIFY"),
a:contains("VERIFY") {
    display: none !important;
}
<style>
    /* Responsive Preloader Fix */
    .preloader-logo-container {
        /* Is container ko screen width ke hisaab se width de aur flex se center karein */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw; /* Poori screen width */
        height: 100vh; /* Poori screen height */
        padding: 0 10px; /* Thoda padding space sides se */
        box-sizing: border-box;
    }

    .preloader-logo-text {
        /* Responsive font-size scaling ke liye */
        font-size: clamp(2.5rem, 8vw, 6rem); /* Bahut chota, standard responsive scaling, max size */
        white-space: nowrap; /* Text break na ho */
        overflow: hidden; /* Cut text hide ho (agar ho) */
        width: auto; /* Width flexible rahe text ke hisaab se */
        text-align: center;
        /* Purani specific logic (agar koi transform use hua hai use responsive range mein laayein) */
    }

    /* Agar logo container fixed width tha, usay flexible karein */
    /* Example Class Name, find actual identifier like #preloader .preloader-logo-container */
    #preloader .preloader-logo-container {
        width: 80% !important; /* Fixed width fixed ho gaya tha text se chota */
        max-width: 300px;
/* Preloader Logo Resizing Fix */
.preloader img, 
#preloader img, 
.loader img, 
.page-loader img {
    max-width: 180px !important;
    width: 80% !important;
    height: auto !important;
    object-fit: contain !important;
}
/* PC/Desktop ke liye Preloader Logo size (Pehle se bada karne ke liye) */
.preloader .preloader-container img {
    max-width: 250px !important; /* Apni marzi ke mutabiq 200px se 300px tak rakh sakte hain */
    height: auto !important;
}

/* Mobile ke liye Preloader Logo size (Chota aur limit karne ke liye) */
@media (max-width: 767px) {
    .preloader .preloader-container img {
        max-width: 120px !important; /* Mobile par width limit kar di */
        height: auto !important;
    }
}
</style>