/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
 
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Navigation */
.main-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.logo-icon {
    font-size: 1.8em;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: #764ba2;
    color: white;
}

/* NFT Sections */
.nft-section {
    margin-bottom: 50px;
 
    transform: translateZ(0);
}

.section-title {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #764ba2;
    font-size: 2em;
}


.cart-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
    position: relative;
}

.cart-section::before {
    content: "Direct Sale Only";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #4CAF50;
}

.cart-total {
    text-align: right;
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.checkout-btn {
    background: #764ba2;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: bold;
}

.checkout-btn:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Auction Notice Styles */
.auction-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.notice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-content li {
    padding: 5px 0;
    color: #856404;
    font-size: 0.95em;
}


.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(500px, auto);
    gap: 25px;
    margin-bottom: 40px;
    align-items: start;

    transform: translateZ(0);
}

.nft-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
 
    will-change: transform;
    backface-visibility: hidden;
}

.nft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.nft-image-container {
    flex: 0 0 auto;
    height: 300px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}


.nft-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;

    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nft-image:hover {
    transform: scale(1.05);
}


.nft-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.text-content {
    flex: 1;
}

.nft-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.3;
    min-height: 2.4em;
}


.quantity-price-section {
    margin-bottom: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #764ba2;
    background: white;
    color: #764ba2;
    border-radius: 50%;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #764ba2;
    color: white;
}

.qty-input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
}

.price-display {
    font-size: 1.3em;
    color: #764ba2;
    font-weight: bold;
    margin-bottom: 5px;
}

.max-supply {
    font-size: 0.8em;
    color: #666;
    font-style: italic;
}


.auction-card .nft-price {
    font-size: 1.1em;
}

.deposit-info {
    font-size: 0.9em;
    color: #ff9800;
    font-weight: bold;
    margin-top: 5px;
}


.action-buttons {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.add-to-cart {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95em;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    font-weight: bold;
}

.add-to-cart:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.bid-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95em;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: bold;
}

.bid-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}


.platforms-separator {
    text-align: center;
    color: #666;
    font-size: 0.85em;
    margin: 8px 0 6px 0;
    padding: 6px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    font-style: italic;
}


.marketplace-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 6px;
}

.marketplace-btn {
    text-align: center;
    padding: 8px 6px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: white;
}

.marketplace-btn.opensea {
    background: #2081e2;
}

.marketplace-btn.opensea:hover {
    background: #1868b7;
    transform: translateY(-1px);
}

.marketplace-btn.blur {
    background: #000000;
}

.marketplace-btn.blur:hover {
    background: #333333;
    transform: translateY(-1px);
}

.marketplace-btn.looksrare {
    background: #00c4ff;
}

.marketplace-btn.looksrare:hover {
    background: #0099cc;
    transform: translateY(-1px);
}

.marketplace-btn.x2y2 {
    background: #000000;
}

.marketplace-btn.x2y2:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Badges */
.collection-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #764ba2;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65em;
    font-weight: bold;
    z-index: 2;
}

.nft-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff9800;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65em;
    font-weight: bold;
    z-index: 2;
}

.deposit-badge {
    position: absolute;
    top: 50px;
    left: 15px;
    background: #4CAF50; 
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7em;
    font-weight: bold;
    z-index: 2;
}

/* Collections Info */
.collections-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid #e9ecef;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.collection-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.collection-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.collection-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.stat {
    background: #764ba2;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.footer-content h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.legal-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #856404;
}

/* Wallet Styles */
.wallet-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wallet-btn {
    background: #764ba2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.wallet-btn:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.wallet-address {
    font-family: monospace;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 85vw;
    max-height: 65vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.modal-image.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
    position: relative;
    z-index: 1002;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
    color: #333;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.1);
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-now-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Bid Modal */
.bid-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.bid-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.bid-input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1em;
    text-align: center;
}

.bid-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.deposit-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.warning-content {
    color: #856404;
}

.warning-content strong {
    color: #856404;
}

.submit-bid-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: bold;
}

.submit-bid-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .container {
        padding: 15px;
    }
    
    .auction-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        grid-auto-rows: minmax(480px, auto);
    }
    
    .nft-card {
        min-height: 480px;
        padding: 15px;
    }
    
    .nft-image-container {
        height: 260px;
        margin-bottom: 12px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-image {
        max-width: 90vw;
        max-height: 60vh;
    }
    
    .marketplace-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nft-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(460px, auto);
    }
    
    .nft-card {
        min-height: 460px;
        padding: 12px;
    }
    
    .nft-image-container {
        height: 240px;
        margin-bottom: 10px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .marketplace-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketplace-btn {
        font-size: 0.75em;
        padding: 6px 4px;
    }
    
    .wallet-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .nft-title {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .quantity-selector {
        gap: 8px;
    }
    
    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 1em;
    }
    
    .qty-input {
        width: 50px;
        padding: 6px;
    }
    
    .price-display {
        font-size: 1.2em;
    }
    
    .cart-section::before {
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7em;
    }
}


/* Bonus Notice Styles */
.bonus-notice {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.bonus-content h4 {
    color: #155724;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.bonus-content p {
    color: #155724;
    margin: 0;
    font-size: 0.95em;
}

.cart-bonus {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-align: center;
    color: #155724;
}



/* NFT Title Link Styles */
.nft-title-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 4px;
    border-radius: 4px;
}

.nft-title-link:hover {
    color: #764ba2;
    background-color: rgba(118, 75, 162, 0.1);
    text-decoration: underline;
}


.nft-card:hover .nft-title-link {
    color: #764ba2;
}


.nft-title {
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 2.4em;
}

.nft-title a {
    text-decoration: none;
}


.qty-input:invalid {
    border-color: #dc3545;
    background-color: #f8d7da;
}

.qty-input:focus:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}


.quantity-error {
    color: #dc3545;
    font-size: 0.8em;
    margin-top: 5px;
    display: none;
}

.qty-input:invalid + .quantity-error {
    display: block;
}

/* Direct Message Section Styles */
.direct-message-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.dm-separator {
    text-align: center;
    color: #666;
    font-size: 0.8em;
    margin-bottom: 8px;
    font-style: italic;
}

.dm-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.dm-btn {
    text-align: center;
    padding: 8px 6px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.75em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: white;
    display: block;
}

.instagram-dm {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.twitter-dm {
    background: #000000;
}

.dm-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.instagram-dm:hover {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
}

.twitter-dm:hover {
    background: #1DA1F2;
}

/* About Contact Styles */
.about-contact {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.about-contact h5 {
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.about-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-contact-btn {
    display: block;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
}

.about-contact-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #E1306C);
}

.about-contact-btn.twitter {
    background: #000000;
}

.about-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.base-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 8px;
}

.deposit-info {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 8px;
}

.user-bid-status {
    margin-bottom: 10px;
}

.user-bid-status div {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid;
}


.user-bid-status div[style*="e8f5e8"] {
    background: #e8f5e8 !important;
    border-color: #c8e6c9;
}

.user-bid-status div[style*="e8f5e8"] strong {
    color: #2e7d32;
    font-size: 0.9em;
}


.user-bid-status div[style*="fff3cd"] {
    background: #fff3cd !important;
    border-color: #ffeaa7;
}

.user-bid-status div[style*="fff3cd"] strong {
    color: #856404;
    font-size: 0.9em;
}


.time-left {
    font-size: 0.9em;
    color: #ff9800;
    font-weight: bold;
    margin-top: 5px;
}


.auction-end {
    font-size: 0.9em;
    color: #ff9800;
    font-weight: bold;
    margin-top: 5px;
}


.max-supply a,
.nft-availability a {
    color: #764ba2;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.max-supply a:hover,
.nft-availability a:hover {
    color: #667eea;
    text-decoration: underline;
}


.owner-notice {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.owner-notice .notice-icon {
    font-size: 1.2em;
    flex-shrink: 0;
}

.owner-notice .notice-content {
    flex: 1;
}

.owner-notice small {
    color: #1565c0;
    font-size: 0.9em;
}

.owner-notice strong {
    color: #0d47a1;
}


.universal-wallet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
}

.universal-icon {
    font-size: 24px;
}

.universal-wallet strong {
    display: block;
    margin-bottom: 4px;
}

.universal-wallet small {
    opacity: 0.9;
    font-size: 12px;
}

.manual-connect {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #764ba2;
}

.manual-connect h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.manual-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: monospace;
    margin: 10px 0;
}

.manual-btn {
    width: 100%;
    padding: 12px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.manual-btn:hover {
    background: #5a6268;
}

.wallet-list {
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
}

.wallet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 5px 0;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-item:hover {
    background: #f8f9fa;
    border-color: #764ba2;
}

.wallet-item img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
