*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0b1220;
color:#fff;
overflow-x:hidden;
}

.mobile-app{
max-width:480px;
margin:auto;
min-height:100vh;
background:#101827;
padding-bottom:90px;
}

/* HEADER */

.top-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:#111827;
position:sticky;
top:0;
z-index:100;
border-bottom:1px solid rgba(255,255,255,.05);
}

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

.header-left h2{
font-size:18px;
font-weight:600;
}

.header-left small{
color:#8fa3bf;
font-size:12px;
}

.logo{
width:40px;
height:40px;
object-fit:contain;
}

.header-right{
display:flex;
align-items:center;
gap:10px;
}

.icon-btn{
width:40px;
height:40px;
border:none;
border-radius:12px;
background:#1f2937;
color:#fff;
cursor:pointer;
position:relative;
}

.icon-btn:hover{
background:#374151;
}

#notifCount{
position:absolute;
top:4px;
right:4px;
background:#ff3b30;
width:18px;
height:18px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:10px;
font-weight:bold;
}

.avatar{
width:42px;
height:42px;
border-radius:50%;
object-fit:cover;
border:2px solid #3b82f6;
}

/* SEARCH */

.search-box{
padding:15px;
}

.search{
display:flex;
align-items:center;
background:#1f2937;
border-radius:15px;
padding:12px 15px;
gap:10px;
}

.search input{
width:100%;
background:none;
border:none;
outline:none;
color:#fff;
font-size:14px;
}

.search input::placeholder{
color:#94a3b8;
}

/* SECTION */

.section{
padding:18px 15px;
}

.section-title{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.section-title h3{
font-size:16px;
font-weight:600;
}

/* WALLET */

#walletCard{
padding:15px;
}

.wallet-card{
background:linear-gradient(135deg,#2563eb,#1d4ed8);
border-radius:20px;
padding:20px;
box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.wallet-card h2{
font-size:28px;
margin:10px 0;
}

.wallet-card p{
color:#dbeafe;
font-size:14px;
}

.wallet-actions{
display:flex;
gap:10px;
margin-top:20px;
}

.wallet-actions button{
flex:1;
height:45px;
border:none;
border-radius:12px;
cursor:pointer;
font-weight:600;
}

.wallet-actions button:first-child{
background:#fff;
color:#1d4ed8;
}

.wallet-actions button:last-child{
background:rgba(255,255,255,.15);
color:#fff;
}

/* QUICK MENU */

.quick-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.quick-item{
display:flex;
flex-direction:column;
align-items:center;
gap:8px;
cursor:pointer;
}

.quick-icon{
width:60px;
height:60px;
border-radius:18px;
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
color:#fff;
}

.quick-item span{
font-size:12px;
text-align:center;
}

.red{background:#ef4444;}
.blue{background:#2563eb;}
.green{background:#10b981;}
.yellow{background:#f59e0b;}
.purple{background:#8b5cf6;}
.orange{background:#f97316;}
.cyan{background:#06b6d4;}
.dark{background:#374151;}

/* STATS */

.stats-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.stat-card{
background:#1f2937;
border-radius:16px;
padding:18px;
text-align:center;
}

.stat-card h2{
font-size:24px;
margin-bottom:5px;
}

.stat-card p{
color:#9ca3af;
font-size:13px;
}

/* LIVE */

.live-list{
display:flex;
overflow-x:auto;
gap:15px;
padding-bottom:5px;
}

.live-card{
min-width:170px;
background:#1f2937;
border-radius:18px;
overflow:hidden;
}

.live-card img{
width:100%;
height:200px;
object-fit:cover;
}

.live-info{
padding:12px;
}

.live-badge{
display:inline-block;
background:red;
padding:3px 10px;
border-radius:20px;
font-size:11px;
margin-bottom:8px;
}

/* VIDEO */

.video-card{
background:#1f2937;
border-radius:18px;
overflow:hidden;
margin-bottom:18px;
}

.video-thumb{
height:220px;
background:#374151;
}

.video-info{
padding:15px;
}

/* CREATOR */

.creator-card{
display:flex;
align-items:center;
justify-content:space-between;
background:#1f2937;
padding:15px;
border-radius:16px;
margin-bottom:12px;
}

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

.creator-left img{
width:55px;
height:55px;
border-radius:50%;
}

.follow-btn{
background:#2563eb;
border:none;
color:#fff;
padding:10px 18px;
border-radius:12px;
cursor:pointer;
}

/* MARKET */

.market-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.market-card{
background:#1f2937;
border-radius:18px;
overflow:hidden;
}

.market-card img{
width:100%;
height:150px;
object-fit:cover;
}

.market-card h4{
padding:12px;
font-size:14px;
}

/* EVENT */

.event-banner{
margin:15px;
background:linear-gradient(135deg,#7c3aed,#3b82f6);
padding:25px;
border-radius:20px;
text-align:center;
}

/* NAVIGATION */

#bottomNav{
position:fixed;
bottom:0;
left:50%;
transform:translateX(-50%);
width:100%;
max-width:480px;
height:70px;
background:#111827;
display:flex;
justify-content:space-around;
align-items:center;
border-top:1px solid rgba(255,255,255,.08);
}

.nav-item{
display:flex;
flex-direction:column;
align-items:center;
color:#94a3b8;
font-size:12px;
cursor:pointer;
}

.nav-item i{
font-size:20px;
margin-bottom:4px;
}

.nav-item.active{
color:#3b82f6;
}

/* RESPONSIVE */

@media(max-width:480px){

.quick-grid{
grid-template-columns:repeat(4,1fr);
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

}
