.wallet-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--simple-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 850px;
    margin: 10px auto 3px;
    padding: 8px;
}

.silly-bal {
 font-size:11px;
 text-align:center;
 color:var(--light-text);
 opacity:0.8;
 margin: 1px auto 15px;
}

/* Main Wallet Card */
.wallet-main-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--simple-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wallet-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.wallet-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 224, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon i {
    color: var(--branding);
    font-size: 20px;
}

.wallet-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
}

.wallet-balance {
    font-size: 32px;
    font-weight: 700;
    color: var(--light-text);
    margin: 10px 0 16px;
    letter-spacing: 0.5px;
}

.wallet-actions {
    display: flex;
    gap: 12px;
}

.wallet-action-btn {
    background: var(--simple-color);
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size:13px;
    color: var(--light-text);
    font-weight: 500;
}

.fund-btn i {
    background: rgba(0, 255, 150, 0.1);
    color: #00ff96;
    font-size: 18px;
    padding:5px;
    border-radius: 50%;
}

.fund-btn {
    background: rgba(0, 255, 224, 0.15);
}

.fund-btn:hover {
    background: rgba(0, 255, 224, 0.25);
}

.withdraw-btn i {
    background: rgba(255, 100, 100, 0.1);
    font-size: 18px;
    padding:5px;
    border-radius: 50%;
}

.withdraw-btn {
    background: rgba(53, 56, 55, 0.5);
}

.withdraw-btn:hover {
    background: rgba(53, 56, 55, 0.7);
}

/* Assets Card */
.assets-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--simple-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.assets-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.assets-header i {
    color: var(--branding);
    font-size: 20px;
}

.assets-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
}

.assets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.asset-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--simple-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.asset-item:hover {
    background: rgba(53, 56, 55, 0.7);
    transform: translateY(-2px);
}

.asset-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.coin-icon {
    background: rgba(255, 200, 0, 0.1);
}

.coin-icon i {
    color: #ffc800;
}

.gem-icon {
    background: rgba(100, 220, 255, 0.1);
}

.gem-icon i {
    color: #64dcff;
}

.cold-icon {
    background: rgba(150, 100, 255, 0.1);
}

.cold-icon i {
    color: #9664ff;
}

.asset-info {
    flex: 1;
}

.asset-name {
    font-size: 12px;
    color:var(--light-text);
    opacity:0.6;
    margin-bottom: 2px;
}

.asset-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .wallet-grid-container {
        grid-template-columns: 1fr;
    }
    
    .wallet-balance {
        font-size: 28px;
    }
    
    .wallet-action-btn {
        padding: 10px 12px;
        font-size: 14px;
    }
}


 /* Main Header Styles */
    .social-header-wrapper {
        position: sticky;
        top: 0;
        background-color: var(--background);
        z-index: 1000;
    }
    
    .social-header-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 0.6rem;
    }
    
    /* Top Row */
    .header-main-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:0.57rem 0;
        margin:0 auto;
        max-width:96%;
        border-bottom: 2px dashed var(--simple-color);
    }
    
   
    
    /* Search Styles */
    .search-icon {
        font-size: 1.5rem;
        color: var(--light-text);
        cursor: pointer;
    }
    
    .search-expanded {
        display: none;
        padding: 0.5rem 0;
        max-width:94%;
        margin:0 auto;
        white-space:nowrap;
        flex-wrap:nowrap;
        border-bottom: 1px solid var(--simple-color);
    }
    
    .search-expanded input {
        width: calc(100% - 40px);
        background: var(--simple-color);
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 50px 0 0 50px;
        color: var(--light-text);
    }
    
    .search-btn {
        width: 40px;
        background: var(--branding);
        color: var(--background);
        border: none;
        border-radius: 0 50px 50px 0;
        cursor: pointer;
    }
    
   
    
    /* Navigation Row */
    .header-nav-row {
        display: flex;
        justify-content: space-around;
        padding: 0.57rem 0;
    }
    
    .nav-item {
        color: var(--light-text);
        font-size: 1.5rem;
        position: relative;
        padding: 0.5rem;
    }
    
    .nav-item.active {
        color: var(--branding);
    }
    
    .nav-item.active::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 3px;
        background-color: var(--branding);
        border-radius: 3px;
    }
    
    .menu-icon {
        color: var(--light-text);
        font-size: 1.8rem;
        cursor: pointer;
        transform:rotate(-7deg)
    }
   
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color:var(--background);
        z-index:50000;
        display: none;
        overflow-y: auto;
    }
    
    .menu-content {
        max-width: 800px;
        margin: 0 auto;
        padding:0.8rem;
        color: var(--light-text);
    }
    
    .close-menu {
        position: absolute;
        top: 10px;
        right: 20px;
        background: none;
        border: none;
        color: var(--branding);
        font-size: 2.5rem;
        cursor: pointer;
    }
    
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 9px;
        margin: 2.2rem 0;
    }
    
    .menu-item {
        background: var(--card-bg);
        border:1px solid var(--simple-color);
        padding:10px 7px;
        border-radius: 8px;
        display: flex;
        text-align:center;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--light-text);
        transition: all 0.3s ease;
    }
    
    .menu-item:hover {
        background: var(--branding);
        color: var(--background);
        transform: translateY(-3px);
    }
    
    .menu-item i {
        font-size: 1.5rem;
        margin:8px 4px;
    }
    .menu-item span {
        font-size: 0.8rem;
        margin:4px;
        font-weight:bold;
    }
    
   .menu-profile-section {
        display: flex;
        align-items: center;
        padding: 15px;
        gap:15px;
        justify-content:start;
        background: var(--card-bg);
        border-radius: 8px;
        border:1px solid var(--simple-color);
        margin-top: 1rem;
    }
    
    .bal-greet{
        text-align:left;
        color:var(--light-text);
        font-size:1rem;
     font-weight:bold;
    }
    
    .menu-avatar {
        width: 30px;
        height: 30px;
        background: var(--branding);
        color: #111;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 0.5rem;
    }
    
    .menu-user-info {
    gap:10px;
    overflow:hidden;
    
    }
    
    .menu-user-info h3 {
     font-size:1rem;
     font-weight:bold;
    }

    .edit-profile-link {
        color: var(--branding);
        text-decoration: none;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
    }
    
    .edit-profile-link i {
        margin-right: 0.3rem;
    }
    
    
    .menu-footer {
        margin-top: 2rem;
        border-top: 1px solid var(--simple-color);
        padding-top: 1rem;
    }
    
    .footer-links, .contact-links {
        display: flex;
        flex-wrap: wrap;
        gap:9px;
        margin: 1rem 0;
    }
    
    .footer-links a, .contact-links a {
        color: var(--light-text);
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    
    .footer-links a i, .contact-links a i {
        margin-right: 0.5rem;
    }
    