        /* Login Button Styling */
        .login-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 25px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
            border: 2px solid transparent !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 0.5rem !important;
        }
        
        .login-btn:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
        }
        
        .login-btn i {
            font-size: 0.9rem;
        }
        
        /* Deposit & Withdraw Section Styling */
        .deposit-withdraw {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .deposit-withdraw h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .wallets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .wallet-item {
            background: white;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            cursor: default;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            pointer-events: none;
        }
        
        .wallet-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .wallet-logo img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
            padding: 10px;
            background: #f8fafc;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
        
        .wallet-logo span {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
        
        .trust-text {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            font-weight: 500;
            margin: 0;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .navbar.open .nav-links .login-btn {
                margin-top: 0.5rem;
                text-align: center;
                justify-content: center;
            }
            
            .deposit-withdraw h2 {
                font-size: 2rem;
            }
            
            .wallets-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }
            
            .wallet-item {
                padding: 1.5rem 1rem;
            }
            
            .wallet-logo img {
                width: 60px;
                height: 60px;
                border-radius: 50%;
            }
        }

        