.wallet-page{
    width:100%;
    min-width:100%;
    padding:30px;
}

.wallet-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    padding:28px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    margin-bottom:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.wallet-hero-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.wallet-logo{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#f3f4f6;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

#wallet-logo{

    width:48px;

    height:48px;

    object-fit:contain;

}

.wallet-title h1{
    margin:0;
    font-size:30px;
    color:#111827;
}

.wallet-address{
    margin-top:8px;
    font-size:15px;
    color:#6b7280;
    word-break:break-all;
}

.wallet-button{
    border:none;
    background:#2563eb;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.wallet-button:hover{
    background:#1d4ed8;
}

.wallet-balance-card{
    background:#2563eb;
    color:#fff;
    border-radius:20px;
    padding:36px;
    margin-bottom:24px;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.wallet-balance-card span{
    display:block;
    opacity:.85;
    font-size:15px;
}

.wallet-balance-card h2{
    margin:10px 0;
    font-size:42px;
}

.wallet-balance-card small{
    opacity:.8;
}

.wallet-summary{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.summary-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:22px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.04);
}

.summary-card span{
    display:block;
    color:#6b7280;
    font-size:14px;
    margin-bottom:10px;
}

.summary-card strong{
    font-size:24px;
    color:#111827;
}

.status-active{
    color:#16a34a;
}

.wallet-tabs{
    display:flex;
    gap:12px;
    margin-bottom:24px;
}

.wallet-tabs button{
    border:none;
    background:#f3f4f6;
    padding:12px 22px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}

.wallet-tabs button.active{
    background:#2563eb;
    color:#fff;
}

.wallet-overview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.overview-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:22px;
}

.overview-card span{
    display:block;
    color:#6b7280;
    margin-bottom:10px;
}

.overview-card strong{
    font-size:20px;
}

.wallet-section{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:28px;
    margin-bottom:28px;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.section-title{
    margin-bottom:20px;
}

.section-title h2{
    margin:0;
    color:#111827;
}

.wallet-assets{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.asset-card{
    display:flex;
    align-items:center;
    gap:15px;
    background:#f9fafb;
    border-radius:16px;
    padding:18px;
}

.asset-card img{
    width:42px;
    height:42px;
}

.asset-card strong{
    display:block;
    margin-bottom:5px;
}

.asset-card span{
    color:#6b7280;
}

.wallet-table{
    width:100%;
    border-collapse:collapse;
}

.wallet-table th{
    background:#f3f4f6;
    padding:16px;
    text-align:left;
    font-size:14px;
}

.wallet-table td{
    padding:16px;
    border-bottom:1px solid #e5e7eb;
}

.wallet-table tr:hover{
    background:#f9fafb;
}

.receive{
    color:#16a34a;
    font-weight:700;
}

.send{
    color:#dc2626;
    font-weight:700;
}

.confirmed{
    color:#16a34a;
    font-weight:700;
}

.pending{
    color:#f59e0b;
    font-weight:700;
}

.wallet-networks{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:16px;
}

.network-card{
    background:#f3f4f6;
    border-radius:14px;
    padding:18px;
    text-align:center;
    font-weight:600;
}

@media(max-width:900px){


.wallet-hero{
    flex-direction:column;
    align-items:flex-start;
}

.wallet-tabs{
    overflow:auto;
}

.wallet-balance-card h2{
    font-size:30px;
}

}